mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Add xca, interface for managing keys like RSA or DSA
This commit is contained in:
parent
9db68de9e6
commit
a19bbd49b7
27
pkgs/applications/misc/xca/default.nix
Normal file
27
pkgs/applications/misc/xca/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
{ stdenv, fetchurl, pkgconfig, which, openssl, qt4, libtool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "xca-${version}";
|
||||
version = "0.9.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/xca/${name}.tar.gz";
|
||||
sha256 = "1fn6kh8mdy65rrgjif7j9wn3mxg1mrrcnhzpi86hfy24ic6bahk8";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
export PATH=$PATH:${which}/bin
|
||||
export QTDIR=${qt4}
|
||||
prefix=$out ./configure ${openssl} ${libtool}
|
||||
'';
|
||||
|
||||
buildInputs = [ openssl qt4 libtool ];
|
||||
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;
|
||||
};
|
||||
}
|
@ -8908,6 +8908,8 @@ let
|
||||
|
||||
xbmc = callPackage ../applications/video/xbmc { };
|
||||
|
||||
xca = callPackage ../applications/misc/xca { };
|
||||
|
||||
xcalib = callPackage ../tools/X11/xcalib { };
|
||||
|
||||
xcape = callPackage ../tools/X11/xcape { };
|
||||
|
Loading…
Reference in New Issue
Block a user