Remove esound and libaudiofile

svn path=/nixpkgs/trunk/; revision=32983
This commit is contained in:
Yury G. Kudryashov 2012-03-11 14:07:27 +00:00
parent 464f6f42f6
commit 736ecb4c53
3 changed files with 0 additions and 29 deletions

View File

@ -11,10 +11,6 @@
#### PLATFORM
audiofile = callPackage ./platform/audiofile { };
esound = callPackage ./platform/esound { };
libIDL = callPackage ./platform/libIDL {
gettext = if stdenv.isDarwin then gettext else null;
};

View File

@ -1,12 +0,0 @@
{stdenv, fetchurl, alsaLib}:
stdenv.mkDerivation {
name = "audiofile-0.3.2";
src = fetchurl {
url = mirror://gnome/sources/audiofile/0.3/audiofile-0.3.2.tar.xz;
sha256 = "185j69j6b0vp6h6bb4j4ipvcyysxf63ghxnvdhh8kbc7ixm71hgs";
};
buildInputs = [ alsaLib ];
}

View File

@ -1,13 +0,0 @@
{stdenv, fetchurl, pkgconfig, alsaLib, audiofile}:
stdenv.mkDerivation {
name = "esound-0.2.41";
src = fetchurl {
url = mirror://gnome/sources/esound/0.2/esound-0.2.41.tar.bz2;
sha256 = "04a9ldy7hsvry1xmfhzg5is2dabsp8m6a82vkai64d2blqlxvday";
};
buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ alsaLib audiofile ];
}