2014-05-20 21:57:03 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, which, openssl, qt4, libtool, gcc, makeWrapper }:
|
2013-10-07 11:57:09 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "xca-${version}";
|
2015-12-02 22:01:00 +00:00
|
|
|
version = "1.3.2";
|
2013-10-07 11:57:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/xca/${name}.tar.gz";
|
2015-12-02 22:01:00 +00:00
|
|
|
sha256 = "1r2w9gpahjv221j963bd4vn0gj4cxmb9j42f3cd9qdn890hizw84";
|
2013-10-07 11:57:09 +01:00
|
|
|
};
|
|
|
|
|
2014-05-20 21:57:03 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram "$out/bin/xca" \
|
2015-10-06 12:23:53 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : \
|
|
|
|
"${gcc.cc.lib}/lib64:${stdenv.lib.makeLibraryPath [ qt4 gcc.cc openssl libtool ]}"
|
2014-05-20 21:57:03 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ openssl qt4 libtool gcc makeWrapper ];
|
2013-10-07 11:57:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Interface for managing asymetric keys like RSA or DSA";
|
|
|
|
homepage = http://xca.sourceforge.net/;
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|