Merge pull request #92672 from r-ryantm/auto-update/afflib

afflib: 3.7.18 -> 3.7.19
This commit is contained in:
Mario Rodas 2020-07-08 07:45:41 -05:00 committed by GitHub
commit a340e0b825
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,23 +3,24 @@
}:
stdenv.mkDerivation rec {
version = "3.7.18";
version = "3.7.19";
pname = "afflib";
src = fetchFromGitHub {
owner = "sshock";
repo = "AFFLIBv3";
rev = "v${version}";
sha256 = "0963gw316p4nyxa9zxmgif29p8i99k898av2g78g28dxafqj3w8c";
sha256 = "1qs843yi33yqbp0scqirn753lxzg762rz6xy2h3f8f77fijqj2qb";
};
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ zlib curl expat fuse openssl python3 ];
buildInputs = [ zlib curl expat openssl python3 ]
++ stdenv.lib.optionals stdenv.isLinux [ fuse ];
meta = {
homepage = "http://afflib.sourceforge.net/";
description = "Advanced forensic format library";
platforms = stdenv.lib.platforms.linux;
platforms = stdenv.lib.platforms.unix;
license = stdenv.lib.licenses.bsdOriginal;
maintainers = [ stdenv.lib.maintainers.raskin ];
inherit version;