2005-02-26 23:45:19 +00:00
|
|
|
{input, stdenv, fetchurl, audiofile}:
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2004-03-29 11:25:25 +01:00
|
|
|
assert audiofile != null;
|
2004-01-21 09:34:19 +00:00
|
|
|
|
2004-03-29 18:23:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2005-02-26 23:45:19 +00:00
|
|
|
inherit (input) name src;
|
2004-04-01 20:11:59 +01:00
|
|
|
propagatedBuildInputs = [audiofile];
|
2004-01-21 09:34:19 +00:00
|
|
|
}
|