nixpkgs/pkgs/development/libraries/afflib/default.nix

30 lines
825 B
Nix
Raw Normal View History

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