mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
3d98c0bf14
svn path=/nixpkgs/trunk/; revision=8107
8 lines
157 B
Nix
8 lines
157 B
Nix
{input, stdenv, fetchurl, audiofile}:
|
|
|
|
assert audiofile != null;
|
|
|
|
stdenv.mkDerivation {
|
|
inherit (input) name src;
|
|
propagatedBuildInputs = [audiofile];
|
|
}
|