2017-05-17 21:26:11 +02:00
|
|
|
{ mkDerivation, lib, fetchurl, pkgconfig, which
|
|
|
|
, libtool, openssl, qtbase, qttools }:
|
2016-10-21 06:27:01 +02:00
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
mkDerivation rec {
|
2013-10-07 12:57:09 +02:00
|
|
|
name = "xca-${version}";
|
2018-03-15 21:03:37 +01:00
|
|
|
version = "1.4.1";
|
2013-10-07 12:57:09 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xca/${name}.tar.gz";
|
2018-03-15 21:03:37 +01:00
|
|
|
sha256 = "11niik2m4yswkp71hrdh54z5kgkvdg8y0b6wdqbrn6vy1n8gz63q";
|
2013-10-07 12:57:09 +02:00
|
|
|
};
|
|
|
|
|
2017-04-28 02:32:24 +02:00
|
|
|
enableParallelBuilding = true;
|
2016-10-21 06:27:01 +02:00
|
|
|
|
|
|
|
buildInputs = [ libtool openssl qtbase qttools ];
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig which ];
|
2016-10-21 06:27:01 +02:00
|
|
|
|
2017-03-03 20:34:33 +01:00
|
|
|
configureFlags = [ "CXXFLAGS=-std=c++11" ];
|
|
|
|
|
2017-05-17 21:26:11 +02:00
|
|
|
meta = with lib; {
|
2013-10-07 12:57:09 +02:00
|
|
|
description = "Interface for managing asymetric keys like RSA or DSA";
|
2018-02-14 01:16:34 +01:00
|
|
|
homepage = http://xca.sourceforge.net/;
|
|
|
|
license = licenses.bsd3;
|
2016-10-21 06:27:01 +02:00
|
|
|
maintainers = with maintainers; [ offline peterhoeg ];
|
2018-02-14 01:16:34 +01:00
|
|
|
platforms = platforms.all;
|
2013-10-07 12:57:09 +02:00
|
|
|
};
|
|
|
|
}
|