1 { lib, stdenv, fetchurl, readline, perl, libharu, libX11, libpng, libXt, zlib }:
3 stdenv.mkDerivation rec {
8 url = "ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-${version}.tar.gz";
9 sha256 = "7184a763d39ad96bb598bfd531628a34aa53e474db9e7cac4416c2a40ab10c6e";
12 buildInputs = [ readline perl libharu libpng libX11 libXt zlib ];
14 configureFlags = [ "--with-hpdf=${libharu}" "--with-pngdriver=${zlib}" ];
17 sed -i 's@$(bindir)/embossupdate@true@' Makefile
21 description = "European Molecular Biology Open Software Suite";
23 EMBOSS is a free Open Source software analysis package
24 specially developed for the needs of the molecular biology (e.g. EMBnet)
25 user community, including libraries. The software automatically copes with
26 data in a variety of formats and even allows transparent retrieval of
27 sequence data from the web.
29 license = lib.licenses.gpl2;
30 homepage = "https://emboss.sourceforge.net/";