mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
28 lines
787 B
Nix
28 lines
787 B
Nix
{ lib, stdenv, fetchurl, pkg-config, gwenhywfar, pcsclite, zlib }:
|
|
|
|
let
|
|
inherit ((import ./sources.nix).libchipcard) hash releaseId version;
|
|
in stdenv.mkDerivation rec {
|
|
pname = "libchipcard";
|
|
inherit version;
|
|
|
|
src = fetchurl {
|
|
url = "https://www.aquamaniac.de/rdm/attachments/download/${releaseId}/${pname}-${version}.tar.gz";
|
|
inherit hash;
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ gwenhywfar pcsclite zlib ];
|
|
|
|
makeFlags = [ "crypttokenplugindir=$(out)/lib/gwenhywfar/plugins/ct" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for access to chipcards";
|
|
homepage = "https://www.aquamaniac.de/rdm/projects/libchipcard";
|
|
license = licenses.lgpl21;
|
|
maintainers = with maintainers; [ aszlig ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|