3
0
Fork 0
forked from mirrors/nixpkgs

gpshell: init at 1.4.4

This commit is contained in:
Marius Bakke 2016-08-10 23:55:35 +01:00
parent 82e2e6e92d
commit 7c03a0d1ae
No known key found for this signature in database
GPG key ID: DE1F3EA4AC8ECFCD
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, pkgconfig, globalplatform, pcsclite }:
stdenv.mkDerivation rec {
name = "gpshell-${version}";
version = "1.4.4";
src = fetchurl {
url = "mirror://sourceforge/globalplatform/gpshell-${version}.tar.gz";
sha256 = "19a77zvyf2vazbv17185s4pynhylk2ky8vhl4i8pg9zww29sicqi";
};
buildInputs = [ pkgconfig globalplatform pcsclite ];
meta = with stdenv.lib; {
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
description = "Smartcard management application";
license = licenses.gpl3;
platforms = platforms.all;
};
}

View file

@ -7506,6 +7506,8 @@ in
gpgstats = callPackage ../tools/security/gpgstats { };
gpshell = callPackage ../development/tools/misc/gpshell { };
grantlee = callPackage ../development/libraries/grantlee { };
gsasl = callPackage ../development/libraries/gsasl { };