Update afflib
This commit is contained in:
parent
6707d9e8c3
commit
063ee53190
@ -1,15 +1,29 @@
|
|||||||
{ stdenv, fetchurl, zlib, curl, expat, fuse, openssl }:
|
{ stdenv, fetchgit, zlib, curl, expat, fuse, openssl
|
||||||
|
, autoconf, automake, libtool, python
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "3.7.4";
|
version = "3.7.5";
|
||||||
name = "afflib-${version}";
|
name = "afflib-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchgit {
|
||||||
url = "http://digitalcorpora.org/downloads/afflib/${name}.tar.gz";
|
url = "https://github.com/sshock/AFFLIBv3/";
|
||||||
sha256 = "18j1gjb31qjcmz6lry4m2d933w2a80iagg9g5vrpw5ig80lv10f8";
|
rev = "refs/tags/v${version}";
|
||||||
|
sha256 = "06dr3y6bd7vfjf0p9v85yp1xzg43x515zsa9587jcx7yy5h5ams5";
|
||||||
|
name = "afflib-${version}-checkout";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ zlib curl expat fuse openssl ];
|
buildInputs = [ zlib curl expat fuse openssl
|
||||||
|
libtool autoconf automake python
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
libtoolize -f
|
||||||
|
autoheader -f
|
||||||
|
aclocal
|
||||||
|
automake --add-missing -c
|
||||||
|
autoconf -f
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://afflib.sourceforge.net/;
|
homepage = http://afflib.sourceforge.net/;
|
||||||
|
@ -4768,7 +4768,9 @@ let
|
|||||||
|
|
||||||
adns = callPackage ../development/libraries/adns { };
|
adns = callPackage ../development/libraries/adns { };
|
||||||
|
|
||||||
afflib = callPackage ../development/libraries/afflib {};
|
afflib = callPackage ../development/libraries/afflib {
|
||||||
|
automake = automake114x;
|
||||||
|
};
|
||||||
|
|
||||||
agg = callPackage ../development/libraries/agg { };
|
agg = callPackage ../development/libraries/agg { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user