about summary refs log tree commit diff
path: root/pkgs/tools/security/redwax-tool/default.nix
blob: 50a2d36699e73985253e1970f2afa193750a006b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ 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";
    mainProgram = "redwax-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 ];
  };
}