summary refs log tree commit diff
diff options
context:
space:
mode:
authorMarius Bakke <m.bakke@warwick.ac.uk>2016-08-10 23:55:11 +0100
committerMarius Bakke <m.bakke@warwick.ac.uk>2016-08-11 00:11:12 +0100
commit82e2e6e92db15b7800f617341dc930bedbd22017 (patch)
treefda26a95dd3a07695e95faa69057cca240dcf7c9
parent67b16f0f85d4467654794059d15a38824c5fad7d (diff)
downloadnixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.tar
nixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.tar.gz
nixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.tar.bz2
nixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.tar.lz
nixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.tar.xz
nixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.tar.zst
nixpkgs-82e2e6e92db15b7800f617341dc930bedbd22017.zip
gppcscconnectionplugin: init at 1.1.0
-rw-r--r--pkgs/development/libraries/globalplatform/gppcscconnectionplugin.nix20
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/globalplatform/gppcscconnectionplugin.nix b/pkgs/development/libraries/globalplatform/gppcscconnectionplugin.nix
new file mode 100644
index 00000000000..f147305220c
--- /dev/null
+++ b/pkgs/development/libraries/globalplatform/gppcscconnectionplugin.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, globalplatform, openssl, pcsclite }:
+
+stdenv.mkDerivation rec {
+  name = "gppcscconnectionplugin-${version}";
+  version  = "1.1.0";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/globalplatform/${name}.tar.gz";
+    sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
+  };
+
+  buildInputs = [ pkgconfig globalplatform openssl pcsclite ];
+
+  meta = with stdenv.lib; {
+    homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
+    description = "GlobalPlatform pcsc connection plugin";
+    license = [ licenses.lgpl3 licenses.gpl3 ];
+    platforms = platforms.all;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 45c55f997aa..d0d90885d8c 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -7383,6 +7383,8 @@ in
   glm_0954 = callPackage ../development/libraries/glm/0954.nix { };
 
   globalplatform = callPackage ../development/libraries/globalplatform { };
+  gppcscconnectionplugin =
+    callPackage ../development/libraries/globalplatform/gppcscconnectionplugin.nix { };
 
   glog = callPackage ../development/libraries/glog { };