From 639d4e610301baf25564e5db240d6fbfc02a988c Mon Sep 17 00:00:00 2001 From: Astro Date: Tue, 23 Aug 2022 20:10:50 +0200 Subject: [PATCH] redwax-tool: init at 0.9.1 --- pkgs/tools/security/redwax-tool/default.nix | 29 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/tools/security/redwax-tool/default.nix diff --git a/pkgs/tools/security/redwax-tool/default.nix b/pkgs/tools/security/redwax-tool/default.nix new file mode 100644 index 00000000000..af327cba948 --- /dev/null +++ b/pkgs/tools/security/redwax-tool/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 81639d50f5b..8214359eec4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10382,6 +10382,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 { };