mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
afflib: 3.7.6 -> 3.7.15
This commit is contained in:
parent
108c6d1a03
commit
71e8ef6e76
1 changed files with 9 additions and 18 deletions
|
@ -1,29 +1,20 @@
|
|||
{ stdenv, fetchgit, zlib, curl, expat, fuse, openssl
|
||||
, autoconf, automake, libtool, python
|
||||
{ stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl
|
||||
, autoreconfHook, python
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.7.6";
|
||||
version = "3.7.15";
|
||||
name = "afflib-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/sshock/AFFLIBv3/";
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "08www22njllqz1j3jkmgn1p36sifxrjd6qlsa7ch4kqy4jaaka1k";
|
||||
name = "afflib-${version}-checkout";
|
||||
src = fetchFromGitHub {
|
||||
owner = "sshock";
|
||||
repo = "AFFLIBv3";
|
||||
rev = "v${version}";
|
||||
sha256 = "0ckg49m15lz5cxg0k12z2ys6v4smjr6l8bbazrvsqlm649gwd2bw";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib curl expat fuse openssl
|
||||
libtool autoconf automake python
|
||||
];
|
||||
buildInputs = [ zlib curl expat fuse openssl autoreconfHook python ];
|
||||
|
||||
preConfigure = ''
|
||||
libtoolize -f
|
||||
autoheader -f
|
||||
aclocal
|
||||
automake --add-missing -c
|
||||
autoconf -f
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = http://afflib.sourceforge.net/;
|
||||
|
|
Loading…
Reference in a new issue