2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
22 lines
633 B
Nix
22 lines
633 B
Nix
{ stdenv, fetchurl, pkgconfig, zlib, openssl_1_0_2, pcsclite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "globalplatform";
|
|
version = "6.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/globalplatform/${pname}-${version}.tar.gz";
|
|
sha256 = "191s9005xbc7i90bzjk4rlw15licd6m0rls9fxli8jyymz2021zy";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ zlib openssl_1_0_2 pcsclite ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://sourceforge.net/p/globalplatform/wiki/Home/;
|
|
description = "Library for interacting with smart card devices";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|