823b3e4770
lots of packages are needed. svn path=/nixpkgs/trunk/; revision=681
13 lines
277 B
Nix
13 lines
277 B
Nix
{stdenv, fetchurl}:
|
|
|
|
derivation {
|
|
name = "audiofile-0.2.3";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://www.68k.org/~michael/audiofile/audiofile-0.2.5.tar.gz;
|
|
md5 = "fd07c62a17ceafa317929e55e51e26c5";
|
|
};
|
|
stdenv = stdenv;
|
|
}
|