afflib: enable on darwin
This commit is contained in:
parent
91f71f2e40
commit
6a8ef827bd
1 changed files with 3 additions and 2 deletions
|
@ -14,12 +14,13 @@ stdenv.mkDerivation rec {
|
|||
};
|
||||
|
||||
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;
|
||||
|
|
Loading…
Reference in a new issue