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.
31 lines
1.1 KiB
Nix
31 lines
1.1 KiB
Nix
{stdenv, fetchurl, readline, perl, libX11, libpng, libXt, zlib}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "emboss-6.0.1";
|
|
src = fetchurl {
|
|
url = ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.0.1.tar.gz;
|
|
sha256 = "0g939k9wmpvmy55hqmbbzj6kj6agg4izymv492zqiawxm812jd9y";
|
|
};
|
|
# patch = fetchurl {
|
|
# url = ftp://emboss.open-bio.org/pub/EMBOSS/fixes/patches/patch-1-9.gz;
|
|
# sha256 = "1pfn5zdxrr71c3kwpdkzmmsqvdwkmynkvcr707vqh73h9cjhk3c1";
|
|
# };
|
|
|
|
buildInputs = [readline perl libpng libX11 libXt zlib];
|
|
|
|
# preConfigure = ''
|
|
# gzip -d $patch | patch -p1
|
|
# '';
|
|
|
|
meta = {
|
|
description = "The European Molecular Biology Open Software Suite";
|
|
longDescription = ''EMBOSS is a free Open Source software analysis package
|
|
specially developed for the needs of the molecular biology (e.g. EMBnet)
|
|
user community, including libraries. The software automatically copes with
|
|
data in a variety of formats and even allows transparent retrieval of
|
|
sequence data from the web.'';
|
|
license = "GPL2";
|
|
homepage = http://emboss.sourceforge.net/;
|
|
};
|
|
}
|