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

36 lines
944 B
Nix
Raw Normal View History

2018-05-30 05:10:47 +00:00
{ mkDerivation, lib, fetchFromGitHub, autoreconfHook, perl, pkgconfig, which
2017-05-17 19:26:11 +00:00
, libtool, openssl, qtbase, qttools }:
2017-05-17 19:26:11 +00:00
mkDerivation rec {
name = "xca-${version}";
2018-05-30 05:10:47 +00:00
version = "2.0.1";
2018-05-30 05:10:47 +00:00
src = fetchFromGitHub {
owner = "chris2511";
repo = "xca";
rev = "RELEASE.${version}";
sha256 = "0906xnmqzd9q5irxzm19361vhzig9yqsmf6wsc3rggniix5bk3a8";
};
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
'';
buildInputs = [ libtool openssl qtbase qttools ];
2018-05-30 05:10:47 +00:00
nativeBuildInputs = [ autoreconfHook pkgconfig which ];
enableParallelBuilding = true;
2017-03-03 19:34:33 +00:00
configureFlags = [ "CXXFLAGS=-std=c++11" ];
2017-05-17 19:26:11 +00:00
meta = with lib; {
description = "Interface for managing asymetric keys like RSA or DSA";
2018-02-14 00:16:34 +00:00
homepage = http://xca.sourceforge.net/;
license = licenses.bsd3;
maintainers = with maintainers; [ offline peterhoeg ];
2018-02-14 00:16:34 +00:00
platforms = platforms.all;
};
}