python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / redwax-tool / default.nix
blobaf327cba948b9a17e6bbfeec12f4134a7f8c3e61
1 { lib, stdenv, fetchsvn
2 , autoreconfHook, pkg-config, txt2man, which
3 , openssl, apr, aprutil
4 }:
6 stdenv.mkDerivation rec {
7   pname = "redwax-tool";
8   version = "0.9.1";
10   src = fetchsvn {
11     url = "https://source.redwax.eu/svn/redwax/rt/redwax-tool/tags/redwax-tool-${version}/";
12     sha256 = "sha256-MWSB1AkkRS18UUHGq8EWv3OIXPSVHpmrdD5Eq1VdbkA=";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config txt2man which ];
16   buildInputs = [ openssl apr aprutil ];
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   };