46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ stdenv, fetchurl, pkgconfig, libusb, pcsclite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pcsc-cyberjack";
|
|
version = "3.99.5_SP12";
|
|
|
|
src = with stdenv.lib; let
|
|
splittedVer = splitString "_" version;
|
|
mainVer = if length splittedVer >= 1 then head splittedVer else version;
|
|
spVer = optionalString (length splittedVer >= 1) ("." + last splittedVer);
|
|
tarballVersion = "${mainVer}final${spVer}";
|
|
in fetchurl {
|
|
url = "http://support.reiner-sct.de/downloads/LINUX/V${version}"
|
|
+ "/pcsc-cyberjack-${tarballVersion}.tar.bz2";
|
|
sha256 = "04pkmybal56s5xnjld09vl1s1h6qf8mvhm41b758d6hi240kgp1j";
|
|
};
|
|
|
|
outputs = [ "out" "tools" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libusb pcsclite ];
|
|
|
|
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";
|
|
homepage = https://www.reiner-sct.com/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ aszlig ];
|
|
};
|
|
}
|