mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
30 lines
931 B
Nix
30 lines
931 B
Nix
{ 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 ];
|
|
};
|
|
}
|