nixpkgs/pkgs/development/libraries/gnome/esound/default.nix

16 lines
356 B
Nix
Raw Normal View History

{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;
}