3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
9 lines
157 B
Nix
9 lines
157 B
Nix
{input, stdenv, fetchurl, audiofile}:
|
|
|
|
assert audiofile != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
propagatedBuildInputs = [audiofile];
|
|
}
|