From a70d3bab72ddcc80d45d1150cdaf4e857ff2af0b Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 27 Sep 2018 04:17:24 +0200 Subject: [PATCH] pcsc-cyberjack: Also install cjflash tool This tool is necessary in order to update the firmware of the secoder. The reason I've added this to a separate output "tools" is because it clearly is not relevant for the PCSC driver itself and it's also very rarely needed. I've also verified wether the closure of the PCSC plugin env still only contains the main output and that's the case. There are also other tools - cjBingoTest and cjgeldkarte, where the former doesn't compile due to cjeca32.h not being found and cjgeldkarte, which does compile but tries to dlopen() the library and subsequently fails. Both of these tools however look like they're just performing tests and are not very useful outside of development, so I opted to not include them. Signed-off-by: aszlig --- pkgs/tools/security/pcsc-cyberjack/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/pcsc-cyberjack/default.nix b/pkgs/tools/security/pcsc-cyberjack/default.nix index 7d7c8ef4971..23a744f8e23 100644 --- a/pkgs/tools/security/pcsc-cyberjack/default.nix +++ b/pkgs/tools/security/pcsc-cyberjack/default.nix @@ -15,10 +15,17 @@ stdenv.mkDerivation rec { sha256 = "04pkmybal56s5xnjld09vl1s1h6qf8mvhm41b758d6hi240kgp1j"; }; + outputs = [ "out" "tools" ]; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libusb pcsclite ]; - configureFlags = [ "--with-usbdropdir=\${prefix}/pcsc/drivers" ]; + configureFlags = [ + "--with-usbdropdir=${placeholder "out"}/pcsc/drivers" + "--bindir=${placeholder "tools"}/bin" + ]; + + postInstall = "make -C tools/cjflash install"; meta = with stdenv.lib; { description = "REINER SCT cyberJack USB chipcard reader user space driver";