2017-03-13 12:15:51 +00:00
|
|
|
{stdenv, fetchurl, readline, perl, libharu, libX11, libpng, libXt, zlib}:
|
2008-06-05 18:14:33 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2017-02-05 00:05:48 +00:00
|
|
|
name = "emboss-6.6.0";
|
2008-06-05 18:14:33 +01:00
|
|
|
src = fetchurl {
|
2017-02-05 00:05:48 +00:00
|
|
|
url = "ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.6.0.tar.gz";
|
|
|
|
sha256 = "7184a763d39ad96bb598bfd531628a34aa53e474db9e7cac4416c2a40ab10c6e";
|
2008-06-05 18:14:33 +01:00
|
|
|
};
|
|
|
|
|
2017-03-13 12:15:51 +00:00
|
|
|
buildInputs = [ readline perl libharu libpng libX11 libXt zlib ];
|
2008-06-05 18:14:33 +01:00
|
|
|
|
2017-03-13 12:15:51 +00:00
|
|
|
configureFlags = [ "--with-hpdf=${libharu}" "--with-pngdriver=${zlib}" ];
|
|
|
|
|
|
|
|
postConfigure = ''
|
|
|
|
sed -i 's@$(bindir)/embossupdate@true@' Makefile
|
|
|
|
'';
|
2008-06-05 18:14:33 +01:00
|
|
|
|
|
|
|
meta = {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "The European Molecular Biology Open Software Suite";
|
2008-06-05 18:14:33 +01:00
|
|
|
longDescription = ''EMBOSS is a free Open Source software analysis package
|
|
|
|
specially developed for the needs of the molecular biology (e.g. EMBnet)
|
2008-07-23 09:22:23 +01:00
|
|
|
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.'';
|
2008-06-05 18:14:33 +01:00
|
|
|
license = "GPL2";
|
|
|
|
homepage = http://emboss.sourceforge.net/;
|
|
|
|
};
|
|
|
|
}
|