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

72 lines
1.7 KiB
Nix
Raw Normal View History

2020-09-08 12:32:01 +00:00
{ stdenv
, lib
, fetchurl
, autoreconfHook
2021-10-18 11:56:45 +00:00
, autoconf-archive
2020-09-08 12:32:01 +00:00
, pkg-config
, perl
, python3
, dbus
, polkit
, systemd
, IOKit
}:
stdenv.mkDerivation rec {
pname = "pcsclite";
2021-10-18 11:56:45 +00:00
version = "1.9.4";
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-10-18 11:56:45 +00:00
sha256 = "sha256:0jqwnpywk9ka3q88b1k93p8s0xhmx1isdpcqa80nd8p04z1am34a";
};
patches = [ ./no-dropdir-literals.patch ];
2020-09-08 12:32:01 +00:00
postPatch = ''
sed -i configure.ac \
-e "s@polkit_policy_dir=.*@polkit_policy_dir=$bin/share/polkit-1/actions@"
'';
configureFlags = [
2020-09-08 12:32:01 +00:00
"--enable-confdir=/etc"
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"
2020-09-08 12:32:01 +00:00
]
++ (if stdenv.isLinux then [
"--enable-ipcdir=/run/pcscd"
"--enable-polkit"
"--with-systemdsystemunitdir=${placeholder "bin"}/lib/systemd/system"
] else [
"--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"
'';
2020-09-08 12:32:01 +00:00
enableParallelBuilding = true;
2021-10-18 11:56:45 +00:00
nativeBuildInputs = [ autoreconfHook autoconf-archive pkg-config perl ];
buildInputs = [ python3 ]
2020-09-08 12:32:01 +00:00
++ lib.optionals stdenv.isLinux [ dbus polkit systemd ]
++ 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;
};
}