lol

libchipcard: 5.0.4 -> 5.1.6

+9 -7
+2 -4
pkgs/development/libraries/aqbanking/libchipcard.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, gwenhywfar, pcsclite, zlib }: 2 2 3 3 let 4 - inherit ((import ./sources.nix).libchipcard) sha256 releaseId version; 4 + inherit ((import ./sources.nix).libchipcard) hash releaseId version; 5 5 in stdenv.mkDerivation rec { 6 6 pname = "libchipcard"; 7 7 inherit version; 8 8 9 9 src = fetchurl { 10 10 url = "https://www.aquamaniac.de/rdm/attachments/download/${releaseId}/${pname}-${version}.tar.gz"; 11 - inherit sha256; 11 + inherit hash; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ]; ··· 16 16 buildInputs = [ gwenhywfar pcsclite zlib ]; 17 17 18 18 makeFlags = [ "crypttokenplugindir=$(out)/lib/gwenhywfar/plugins/ct" ]; 19 - 20 - configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ]; 21 19 22 20 meta = with lib; { 23 21 description = "Library for access to chipcards";
+7 -3
pkgs/development/libraries/aqbanking/sources.nix
··· 2 2 gwenhywfar.version = "5.6.0"; 3 3 gwenhywfar.sha256 = "1isbj4a7vdgagp3kkvx2pjcjy8lba6kzjr11fmr06aci1694dbsp"; 4 4 gwenhywfar.releaseId = "364"; 5 - libchipcard.version = "5.0.4"; 6 - libchipcard.sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj"; 7 - libchipcard.releaseId = "158"; 5 + 6 + # https://www.aquamaniac.de/rdm/projects/libchipcard/files 7 + libchipcard = { 8 + version = "5.1.6"; 9 + hash = "sha256-bAf1J0F/dWIHT5kBLaTRHrTbr9M/SeZrRCzNbjuM/SA="; 10 + releaseId = "382"; 11 + }; 8 12 9 13 # https://www.aquamaniac.de/rdm/projects/aqbanking/files 10 14 aqbanking = {