nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 17.09 27 lines 758 B view raw
1{ stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl 2, autoreconfHook, python 3}: 4 5stdenv.mkDerivation rec { 6 version = "3.7.16"; 7 name = "afflib-${version}"; 8 9 src = fetchFromGitHub { 10 owner = "sshock"; 11 repo = "AFFLIBv3"; 12 rev = "v${version}"; 13 sha256 = "0piwkmg7jn64h57cjf5cybyvyqxj2k752g9vrf4ycds7nhvvbnb6"; 14 }; 15 16 buildInputs = [ zlib curl expat fuse openssl autoreconfHook python ]; 17 18 meta = { 19 homepage = http://afflib.sourceforge.net/; 20 description = "Advanced forensic format library"; 21 platforms = stdenv.lib.platforms.linux; 22 license = stdenv.lib.licenses.bsdOriginal; 23 maintainers = [ stdenv.lib.maintainers.raskin ]; 24 inherit version; 25 downloadPage = "https://github.com/sshock/AFFLIBv3/tags"; 26 }; 27}