Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 28 lines 787 B view raw
1{ stdenv, fetchFromGitHub, zlib, curl, expat, fuse, openssl 2, autoreconfHook, python3 3}: 4 5stdenv.mkDerivation rec { 6 version = "3.7.17"; 7 name = "afflib-${version}"; 8 9 src = fetchFromGitHub { 10 owner = "sshock"; 11 repo = "AFFLIBv3"; 12 rev = "v${version}"; 13 sha256 = "11q20n6p5nvwmd9wwk0addlfxpxagf47ly89scn3jvc7k484ksan"; 14 }; 15 16 nativeBuildInputs = [ autoreconfHook ]; 17 buildInputs = [ zlib curl expat fuse openssl python3 ]; 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}