c9baba9212
(My OCD kicked in today...) Remove repeated package names, capitalize first word, remove trailing periods and move overlong descriptions to longDescription. I also simplified some descriptions as well, when they were particularly long or technical, often based on Arch Linux' package descriptions. I've tried to stay away from generated expressions (and I think I succeeded). Some specifics worth mentioning: * cron, has "Vixie Cron" in its description. The "Vixie" part is not mentioned anywhere else. I kept it in a parenthesis at the end of the description. * ctags description started with "Exuberant Ctags ...", and the "exuberant" part is not mentioned elsewhere. Kept it in a parenthesis at the end of description. * nix has the description "The Nix Deployment System". Since that doesn't really say much what it is/does (especially after removing the package name!), I changed that to "Powerful package manager that makes package management reliable and reproducible" (borrowed from nixos.org). * Tons of "GNU Foo, Foo is a [the important bits]" descriptions is changed to just [the important bits]. If the package name doesn't contain GNU I don't think it's needed to say it in the description either.
38 lines
1.1 KiB
Nix
38 lines
1.1 KiB
Nix
{ stdenv, fetchurl, zlib, guile, libart_lgpl, pkgconfig, intltool
|
|
, gtk, glib, libogg, libvorbis, libgnomecanvas, gettext, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "beast-0.7.1";
|
|
|
|
src = 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
|
|
];
|
|
|
|
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=/${stdenv.shell}=g' -i `find -type f`
|
|
sed 's=/usr/bin/perl=/${perl}/bin/perl=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 = "A music composition and modular synthesis application";
|
|
homepage = http://beast.gtk.org;
|
|
license = ["GPL-2" "LGPL-2.1"];
|
|
};
|
|
}
|