nixpkgs/pkgs/desktops/gnome/esound.nix

9 lines
157 B
Nix
Raw Normal View History

{input, stdenv, fetchurl, audiofile}:
assert audiofile != null;
stdenv.mkDerivation {
inherit (input) name src;
propagatedBuildInputs = [audiofile];
}