2016-06-02 16:33:54 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gwenhywfar, pcsclite, zlib }:
|
|
|
|
|
2018-04-27 17:32:27 +02:00
|
|
|
let
|
|
|
|
inherit ((import ./sources.nix).libchipcard) sha256 releaseId version;
|
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libchipcard";
|
2018-04-27 17:32:27 +02:00
|
|
|
inherit version;
|
2016-06-02 16:33:54 +02:00
|
|
|
|
2020-02-27 12:47:58 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.aquamaniac.de/rdm/attachments/download/${releaseId}/${pname}-${version}.tar.gz";
|
2016-06-02 18:17:04 +02:00
|
|
|
inherit sha256;
|
2016-06-02 16:33:54 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ gwenhywfar pcsclite zlib ];
|
|
|
|
|
|
|
|
makeFlags = [ "crypttokenplugindir=$(out)/lib/gwenhywfar/plugins/ct" ];
|
|
|
|
|
|
|
|
configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library for access to chipcards";
|
2019-12-08 17:50:31 +01:00
|
|
|
homepage = "https://www.aquamaniac.de/rdm/projects/libchipcard";
|
2016-06-02 16:33:54 +02:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
maintainers = with maintainers; [ aszlig ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|