summary refs log tree commit diff
diff options
context:
space:
mode:
authorjpathy <15735913+jpathy@users.noreply.github.com>2018-08-05 14:32:15 +0000
committerxeji <36407913+xeji@users.noreply.github.com>2018-08-05 16:32:15 +0200
commit8a9733361e05d162e80d534543bdf79b27036e5e (patch)
treeab1a9bbf35cb46282d9b70bef1ba1203c9987594
parent57d5e2b20d97775be5c3853b0a04096a36ac224c (diff)
downloadnixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.tar
nixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.tar.gz
nixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.tar.bz2
nixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.tar.lz
nixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.tar.xz
nixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.tar.zst
nixpkgs-8a9733361e05d162e80d534543bdf79b27036e5e.zip
ccid: 1.4.27 -> 1.4.29 (#44503)
Also update the non-existent homepage and download link.
-rw-r--r--pkgs/tools/security/ccid/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/ccid/default.nix b/pkgs/tools/security/ccid/default.nix
index 903794622fb..0f515c51804 100644
--- a/pkgs/tools/security/ccid/default.nix
+++ b/pkgs/tools/security/ccid/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
 
 stdenv.mkDerivation rec {
-  version = "1.4.27";
+  version = "1.4.29";
   name = "ccid-${version}";
 
   src = fetchurl {
-    url = "https://alioth.debian.org/frs/download.php/file/4218/ccid-1.4.27.tar.bz2";
-    sha256 = "0dyikpmhsph36ndgd61bs4yx437v5y0bmm8ahjacp1k9c1ly4q56";
+    url = "https://ccid.apdu.fr/files/${name}.tar.bz2";
+    sha256 = "0kdqmbma6sclsrbxy9w85h7cs0v11if4nc2r9v09613k8pl2lhx5";
   };
 
   postPatch = ''
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "ccid drivers for pcsclite";
-    homepage = http://pcsclite.alioth.debian.org/;
+    homepage = https://ccid.apdu.fr/;
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ wkennington ];
     platforms = platforms.linux;