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

34 lines
939 B
Nix
Raw Normal View History

{ mkDerivation, lib, fetchFromGitHub, autoreconfHook, perl, pkg-config
2017-05-17 19:26:11 +00:00
, libtool, openssl, qtbase, qttools }:
2017-05-17 19:26:11 +00:00
mkDerivation rec {
pname = "xca";
2020-01-31 14:08:54 +00:00
version = "2.2.1";
2018-05-30 05:10:47 +00:00
src = fetchFromGitHub {
owner = "chris2511";
repo = "xca";
rev = "RELEASE.${version}";
2020-01-31 14:08:54 +00:00
sha256 = "0na2816lkfkkvssh9kmf5vwy6x8kd4x7h138jzy61wrvs69vhnbi";
};
2018-05-30 05:10:47 +00:00
postPatch = ''
substituteInPlace doc/code2html \
2018-05-30 07:01:02 +00:00
--replace /usr/bin/perl ${perl}/bin/perl
2018-05-30 05:10:47 +00:00
'';
2018-09-14 08:23:11 +00:00
buildInputs = [ libtool openssl qtbase ];
nativeBuildInputs = [ autoreconfHook pkg-config qttools ];
2018-05-30 05:10:47 +00:00
enableParallelBuilding = true;
2017-05-17 19:26:11 +00:00
meta = with lib; {
2018-09-14 08:23:11 +00: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 00:16:34 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ offline peterhoeg ];
2018-02-14 00:16:34 +00:00
platforms = platforms.all;
};
}