Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 28 lines 785 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 nativeBuildInputs = [ autoreconfHook ]; 17 buildInputs = [ zlib curl expat fuse openssl python ]; 18 19 meta = { 20 homepage = http://afflib.sourceforge.net/; 21 description = "Advanced forensic format library"; 22 platforms = stdenv.lib.platforms.linux; 23 license = stdenv.lib.licenses.bsdOriginal; 24 maintainers = [ stdenv.lib.maintainers.raskin ]; 25 inherit version; 26 downloadPage = "https://github.com/sshock/AFFLIBv3/tags"; 27 }; 28}