Skip to content

Commit

Permalink
pcsc-cyberjack: 3.99.5_SP12 -> 3.99.5_SP13
Browse files Browse the repository at this point in the history
Unfortunately, the upstream changelog consists of just the following:

  * Update to the Reiner-SCT repository rev cyberJack@1374

This is not very helpful since I haven't found a public SVN (I assume,
since it's using integer revisions) repository, so I decided to diff the
tarball against the old one, here's what I've found:

  * No longer ship generated files from autotools
  * Add support for REINER SCT cyberJack comfort PL
  * Add support for tanJack USB
  * Allow to override secoder information
  * Lots of whitespace and coding style changes

As mentioned above, the autotools-generated files are no longer shipped,
so I've added autoreconfHook to nativeBuildInputs.

I also verified the source tarball using the upstream hashes found here:

http://downloads.reiner-sct.de/LINUX/Hashwerte/Hashwerte.txt

Signed-off-by: aszlig <[email protected]>
Merges: #84749
  • Loading branch information
aszlig committed Apr 17, 2020
1 parent ee6f5a3 commit 3679c8d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/tools/security/pcsc-cyberjack/default.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{ stdenv, fetchurl, pkgconfig, libusb1, pcsclite }:
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libusb1, pcsclite }:

stdenv.mkDerivation rec {
pname = "pcsc-cyberjack";
version = "3.99.5_SP12";
version = "3.99.5_SP13";

src = with stdenv.lib; let
splittedVer = splitString "_" version;
Expand All @@ -11,13 +11,13 @@ stdenv.mkDerivation rec {
tarballVersion = "${mainVer}final${spVer}";
in fetchurl {
url = "http://support.reiner-sct.de/downloads/LINUX/V${version}"
+ "/pcsc-cyberjack-${tarballVersion}.tar.bz2";
sha256 = "04pkmybal56s5xnjld09vl1s1h6qf8mvhm41b758d6hi240kgp1j";
+ "/pcsc-cyberjack_${tarballVersion}.tar.gz";
sha256 = "1lx4bfz4riz7j77sl65akyxzww0ygm63w0c1b75knr1pijlv8d3b";
};

outputs = [ "out" "tools" ];

nativeBuildInputs = [ pkgconfig ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libusb1 pcsclite ];

configureFlags = [
Expand Down

0 comments on commit 3679c8d

Please sign in to comment.