mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
34 lines
937 B
Nix
34 lines
937 B
Nix
{ mkDerivation, lib, fetchFromGitHub, autoreconfHook, perl, pkgconfig
|
|
, libtool, openssl, qtbase, qttools }:
|
|
|
|
mkDerivation rec {
|
|
pname = "xca";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chris2511";
|
|
repo = "xca";
|
|
rev = "RELEASE.${version}";
|
|
sha256 = "0na2816lkfkkvssh9kmf5vwy6x8kd4x7h138jzy61wrvs69vhnbi";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace doc/code2html \
|
|
--replace /usr/bin/perl ${perl}/bin/perl
|
|
'';
|
|
|
|
buildInputs = [ libtool openssl qtbase ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig qttools ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "An x509 certificate generation tool, handling RSA, DSA and EC keys, certificate signing requests (PKCS#10) and CRLs";
|
|
homepage = "https://hohnstaedt.de/xca/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ offline peterhoeg ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|