summary refs log tree commit diff
path: root/pkgs/desktops/gnome/esound.nix
blob: eb3727bc1c2a2586a0ba27de731d238278a24027 (plain) (blame)
1
2
3
4
5
6
7
8
{input, stdenv, fetchurl, audiofile}:

assert audiofile != null;

stdenv.mkDerivation {
  inherit (input) name src;
  propagatedBuildInputs = [audiofile];
}