lol

Merge pull request #188060 from astro/red-wax

authored by

Sandro and committed by
GitHub
2f63a28b bac0c1c7

+31
+29
pkgs/tools/security/redwax-tool/default.nix
··· 1 + { lib, stdenv, fetchsvn 2 + , autoreconfHook, pkg-config, txt2man, which 3 + , openssl, apr, aprutil 4 + }: 5 + 6 + stdenv.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 + }
+2
pkgs/top-level/all-packages.nix
··· 10384 10384 10385 10385 reftools = callPackage ../development/tools/reftools { }; 10386 10386 10387 + redwax-tool = callPackage ../tools/security/redwax-tool { }; 10388 + 10387 10389 regpg = callPackage ../tools/security/regpg { }; 10388 10390 10389 10391 remote-touchpad = callPackage ../tools/inputmethods/remote-touchpad { };