nixpkgs/pkgs/applications/misc/xca/default.nix

34 lines
945 B
Nix
Raw Normal View History

2018-09-14 10:23:11 +02:00
{ mkDerivation, lib, fetchFromGitHub, autoreconfHook, perl, pkgconfig
2017-05-17 21:26:11 +02:00
, libtool, openssl, qtbase, qttools }:
2017-05-17 21:26:11 +02:00
mkDerivation rec {
name = "xca-${version}";
2018-11-08 10:27:42 +01:00
version = "2.1.2";
2018-05-30 07:10:47 +02:00
src = fetchFromGitHub {
owner = "chris2511";
repo = "xca";
rev = "RELEASE.${version}";
2018-11-08 10:27:42 +01:00
sha256 = "0slfqmz0b01lwmrv4h78hmrsdrhcyc7sjzsxcw05ylgmhvdq3dw9";
};
2018-05-30 07:10:47 +02:00
postPatch = ''
substituteInPlace doc/code2html \
2018-05-30 09:01:02 +02:00
--replace /usr/bin/perl ${perl}/bin/perl
2018-05-30 07:10:47 +02:00
'';
2018-09-14 10:23:11 +02:00
buildInputs = [ libtool openssl qtbase ];
2018-09-14 10:23:11 +02:00
nativeBuildInputs = [ autoreconfHook pkgconfig qttools ];
2018-05-30 07:10:47 +02:00
enableParallelBuilding = true;
2017-05-17 21:26:11 +02:00
meta = with lib; {
2018-09-14 10:23:11 +02:00
description = "An x509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
homepage = https://hohnstaedt.de/xca/;
2018-02-14 01:16:34 +01:00
license = licenses.bsd3;
maintainers = with maintainers; [ offline peterhoeg ];
2018-02-14 01:16:34 +01:00
platforms = platforms.all;
};
}