823b3e4770
lots of packages are needed. svn path=/nixpkgs/trunk/; revision=681
16 lines
356 B
Nix
16 lines
356 B
Nix
{stdenv, fetchurl, audiofile}:
|
|
|
|
assert !isNull audiofile;
|
|
|
|
derivation {
|
|
name = "esound-0.2.32";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
src = fetchurl {
|
|
url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/esound-0.2.32.tar.bz2;
|
|
md5 = "b2a5e71ec8220fea1c22cc042f5f6e63";
|
|
};
|
|
stdenv = stdenv;
|
|
audiofile = audiofile;
|
|
}
|