Skip to content

Commit

Permalink
afflib: enable on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam committed Jul 8, 2020
1 parent 91f71f2 commit 6a8ef82
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/libraries/afflib/default.nix
Expand Up @@ -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;
Expand Down

0 comments on commit 6a8ef82

Please sign in to comment.