tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gppcscconnectionplugin: init at 1.1.0
Marius Bakke
9 years ago
82e2e6e9
67b16f0f
+22
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
globalplatform
gppcscconnectionplugin.nix
top-level
all-packages.nix
+20
pkgs/development/libraries/globalplatform/gppcscconnectionplugin.nix
···
1
1
+
{ stdenv, fetchurl, pkgconfig, globalplatform, openssl, pcsclite }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "gppcscconnectionplugin-${version}";
5
5
+
version = "1.1.0";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = "mirror://sourceforge/globalplatform/${name}.tar.gz";
9
9
+
sha256 = "0d3vcrh9z55rbal0dchmj661pqqrav9c400bx1c46grcl1q022ad";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ pkgconfig globalplatform openssl pcsclite ];
13
13
+
14
14
+
meta = with stdenv.lib; {
15
15
+
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
16
16
+
description = "GlobalPlatform pcsc connection plugin";
17
17
+
license = [ licenses.lgpl3 licenses.gpl3 ];
18
18
+
platforms = platforms.all;
19
19
+
};
20
20
+
}
+2
pkgs/top-level/all-packages.nix
···
7383
7383
glm_0954 = callPackage ../development/libraries/glm/0954.nix { };
7384
7384
7385
7385
globalplatform = callPackage ../development/libraries/globalplatform { };
7386
7386
+
gppcscconnectionplugin =
7387
7387
+
callPackage ../development/libraries/globalplatform/gppcscconnectionplugin.nix { };
7386
7388
7387
7389
glog = callPackage ../development/libraries/glog { };
7388
7390