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

29 lines
756 B
Nix
Raw Normal View History

2017-05-17 19:26:11 +00:00
{ mkDerivation, lib, fetchurl, pkgconfig, which
, libtool, openssl, qtbase, qttools }:
2017-05-17 19:26:11 +00:00
mkDerivation rec {
name = "xca-${version}";
version = "1.4.1";
src = fetchurl {
url = "mirror://sourceforge/xca/${name}.tar.gz";
sha256 = "11niik2m4yswkp71hrdh54z5kgkvdg8y0b6wdqbrn6vy1n8gz63q";
};
2017-04-28 00:32:24 +00:00
enableParallelBuilding = true;
buildInputs = [ libtool openssl qtbase qttools ];
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ pkgconfig which ];
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;
};
}