forked from mirrors/nixpkgs
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 <aszlig@nix.build>
This commit is contained in:
parent
f37f34e3dc
commit
a70d3bab72
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue