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