2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl
|
2018-08-03 17:53:51 +02:00
|
|
|
, autoreconfHook, python3
|
2014-11-03 14:04:28 +01:00
|
|
|
}:
|
2011-08-02 21:46:28 +02:00
|
|
|
|
2014-05-01 10:57:52 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-08 04:34:24 +02:00
|
|
|
version = "3.7.19";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "afflib";
|
2014-05-01 10:57:52 +02:00
|
|
|
|
2017-02-02 02:14:47 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sshock";
|
|
|
|
repo = "AFFLIBv3";
|
|
|
|
rev = "v${version}";
|
2020-07-08 04:34:24 +02:00
|
|
|
sha256 = "1qs843yi33yqbp0scqirn753lxzg762rz6xy2h3f8f77fijqj2qb";
|
2011-08-02 21:46:28 +02:00
|
|
|
};
|
|
|
|
|
2017-09-05 23:26:13 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2020-07-08 06:59:56 +02:00
|
|
|
buildInputs = [ zlib curl expat openssl python3 ]
|
2021-01-21 18:00:13 +01:00
|
|
|
++ lib.optionals stdenv.isLinux [ fuse ];
|
2014-11-03 14:04:28 +01:00
|
|
|
|
2011-08-02 21:46:28 +02:00
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://afflib.sourceforge.net/";
|
2011-08-02 21:46:28 +02:00
|
|
|
description = "Advanced forensic format library";
|
2021-01-21 18:00:13 +01:00
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
license = lib.licenses.bsdOriginal;
|
|
|
|
maintainers = [ lib.maintainers.raskin ];
|
2014-07-01 10:27:13 +02:00
|
|
|
inherit version;
|
2014-12-20 22:29:22 +01:00
|
|
|
downloadPage = "https://github.com/sshock/AFFLIBv3/tags";
|
2011-08-02 21:46:28 +02:00
|
|
|
};
|
2014-05-01 10:57:52 +02:00
|
|
|
}
|