diff options
Diffstat (limited to 'pkgs/development/libraries/afflib/default.nix')
-rw-r--r-- | pkgs/development/libraries/afflib/default.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/libraries/afflib/default.nix b/pkgs/development/libraries/afflib/default.nix deleted file mode 100644 index e82c3c8dfe77..000000000000 --- a/pkgs/development/libraries/afflib/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl -, autoreconfHook, python3, libiconv -}: - -stdenv.mkDerivation rec { - version = "3.7.20"; - pname = "afflib"; - - src = fetchFromGitHub { - owner = "sshock"; - repo = "AFFLIBv3"; - rev = "v${version}"; - sha256 = "sha256-xkqBfTftzn+rgeuoaKfHP7vQmy4VZuaCq8VFlfZTUE4="; - }; - - nativeBuildInputs = [ autoreconfHook ]; - buildInputs = [ zlib curl expat openssl python3 ] - ++ lib.optionals (with stdenv; isLinux || isDarwin) [ fuse ] - ++ lib.optionals stdenv.isDarwin [ libiconv ]; - - meta = { - homepage = "http://afflib.sourceforge.net/"; - description = "Advanced forensic format library"; - platforms = lib.platforms.unix; - license = lib.licenses.bsdOriginal; - maintainers = [ lib.maintainers.raskin ]; - downloadPage = "https://github.com/sshock/AFFLIBv3/tags"; - }; -} |