nixpkgs/pkgs/tools/security/pcsclite/default.nix

48 lines
1.4 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchurl, pkg-config, udev, dbus, perl, python3
2016-08-12 03:51:32 +00:00
, IOKit ? null }:
stdenv.mkDerivation rec {
pname = "pcsclite";
2021-02-20 01:05:06 +00:00
version = "1.9.1";
2018-06-21 10:40:15 +00:00
outputs = [ "bin" "out" "dev" "doc" "man" ];
src = fetchurl {
2018-06-12 20:40:32 +00:00
url = "https://pcsclite.apdu.fr/files/pcsc-lite-${version}.tar.bz2";
2021-02-20 01:05:06 +00:00
sha256 = "sha256-c8R4m3h2qDOnD0k82iFlXf6FaJ2bfilwHCQyduVeaDo=";
};
patches = [ ./no-dropdir-literals.patch ];
configureFlags = [
2015-08-06 02:25:37 +00:00
# The OS should care on preparing the drivers into this location
"--enable-usbdropdir=/var/lib/pcsc/drivers"
2015-08-06 02:25:37 +00:00
"--enable-confdir=/etc"
2021-01-15 09:19:50 +00:00
] ++ lib.optional stdenv.isLinux
2018-01-04 23:39:44 +00:00
"--with-systemdsystemunitdir=\${out}/etc/systemd/system"
2021-01-15 09:19:50 +00:00
++ lib.optional (!stdenv.isLinux)
2018-01-04 23:39:44 +00:00
"--disable-libsystemd";
postConfigure = ''
sed -i -re '/^#define *PCSCLITE_HP_DROPDIR */ {
s/(DROPDIR *)(.*)/\1(getenv("PCSCLITE_HP_DROPDIR") ? : \2)/
}' config.h
'';
2018-06-21 10:40:15 +00:00
postInstall = ''
# pcsc-spy is a debugging utility and it drags python into the closure
moveToOutput bin/pcsc-spy "$dev"
'';
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config perl ];
2021-01-15 09:19:50 +00:00
buildInputs = [ python3 ] ++ lib.optionals stdenv.isLinux [ udev dbus ]
++ lib.optionals stdenv.isDarwin [ IOKit ];
meta = with lib; {
description = "Middleware to access a smart card using SCard API (PC/SC)";
homepage = "https://pcsclite.apdu.fr/";
2014-03-21 21:32:21 +00:00
license = licenses.bsd3;
2015-12-03 18:13:31 +00:00
platforms = with platforms; unix;
};
}