Merge pull request #188060 from astro/red-wax

This commit is contained in:
Sandro 2022-08-24 01:13:59 +02:00 committed by GitHub
commit 2f63a28b7c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ lib, stdenv, fetchsvn
, autoreconfHook, pkg-config, txt2man, which
, openssl, apr, aprutil
}:
stdenv.mkDerivation rec {
pname = "redwax-tool";
version = "0.9.1";
src = fetchsvn {
url = "https://source.redwax.eu/svn/redwax/rt/redwax-tool/tags/redwax-tool-${version}/";
sha256 = "sha256-MWSB1AkkRS18UUHGq8EWv3OIXPSVHpmrdD5Eq1VdbkA=";
};
nativeBuildInputs = [ autoreconfHook pkg-config txt2man which ];
buildInputs = [ openssl apr aprutil ];
meta = with lib; {
homepage = "https://redwax.eu/rt/";
description = "Universal certificate conversion tool";
longDescription = ''
Read certificates and keys from your chosen sources, filter the
certificates and keys you're interested in, write those
certificates and keys to the destinations of your choice.
'';
license = licenses.asl20;
maintainers = with maintainers; [ astro ];
};
}

View file

@ -10384,6 +10384,8 @@ with pkgs;
reftools = callPackage ../development/tools/reftools { };
redwax-tool = callPackage ../tools/security/redwax-tool { };
regpg = callPackage ../tools/security/regpg { };
remote-touchpad = callPackage ../tools/inputmethods/remote-touchpad { };