Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 29 lines 898 B view raw
1{ lib, stdenv, fetchsvn 2, autoreconfHook, pkg-config, txt2man, which 3, openssl, apr, aprutil 4}: 5 6stdenv.mkDerivation rec { 7 pname = "redwax-tool"; 8 version = "0.9.1"; 9 10 src = fetchsvn { 11 url = "https://source.redwax.eu/svn/redwax/rt/redwax-tool/tags/redwax-tool-${version}/"; 12 sha256 = "sha256-MWSB1AkkRS18UUHGq8EWv3OIXPSVHpmrdD5Eq1VdbkA="; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook pkg-config txt2man which ]; 16 buildInputs = [ openssl apr aprutil ]; 17 18 meta = with lib; { 19 homepage = "https://redwax.eu/rt/"; 20 description = "Universal certificate conversion tool"; 21 longDescription = '' 22 Read certificates and keys from your chosen sources, filter the 23 certificates and keys you're interested in, write those 24 certificates and keys to the destinations of your choice. 25 ''; 26 license = licenses.asl20; 27 maintainers = with maintainers; [ astro ]; 28 }; 29}