mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
5479dfea93
svn path=/nixpkgs/trunk/; revision=12647
37 lines
1.0 KiB
Nix
37 lines
1.0 KiB
Nix
args: with args;
|
|
args.stdenv.mkDerivation {
|
|
name = "beast-0.7.1";
|
|
|
|
src = args.fetchurl {
|
|
url = ftp://beast.gtk.org/pub/beast/v0.7/beast-0.7.1.tar.bz2;
|
|
sha256 = "0jyl1i1918rsn4296w07fsf6wx3clvad522m3bzgf8ms7gxivg5l";
|
|
};
|
|
|
|
buildInputs =[zlib guile libart_lgpl pkgconfig intltool gtk glib
|
|
libogg libvorbis libgnomecanvas gettext
|
|
];
|
|
|
|
inherit bash perl;
|
|
|
|
patchPhase = ''
|
|
unset patchPhase; patchPhase
|
|
sed 's=-DG_DISABLE_DEPRECATED==g' -i `find -type f` # the patches didn't remove all occurences
|
|
sed 's=/bin/bash=/$bash/bin/bash=g' -i `find -type f`
|
|
sed 's=/usr/bin/perl=/$perl/bin/bash=g' -i `find -type f`
|
|
'';
|
|
|
|
patches = [
|
|
(fetchurl {
|
|
url = mirror://gentoo/distfiles/beast-0.7.1-guile-1.8.diff.bz2;
|
|
sha256 = "dc5194deff4b0a0eec368a69090db682d0c3113044ce2c2ed017ddfec9d3814e";
|
|
})
|
|
./patch.patch # patches taken from gentoo
|
|
];
|
|
|
|
meta = {
|
|
description = "BEAST - the Bedevilled Sound Engine";
|
|
homepage = http://beast.gtk.org;
|
|
license = ["GPL-2" "LGPL-2.1"];
|
|
};
|
|
}
|