summary refs log tree commit diff
path: root/pkgs/development/libraries/gnome/esound/default.nix
blob: ce70fe1647c527061f0f4de48b5b7623af74b781 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{stdenv, fetchurl, audiofile}:

assert audiofile != null;

stdenv.mkDerivation {
  name = "esound-0.2.32";
  src = fetchurl {
    url = http://ftp.gnome.org/pub/GNOME/desktop/2.4/2.4.1/sources/esound-0.2.32.tar.bz2;
    md5 = "b2a5e71ec8220fea1c22cc042f5f6e63";
  };
  propagatedBuildInputs = [audiofile];
}