ccid: Update from 1.4.14 -> 1.4.15

This commit is contained in:
William A. Kennington III 2014-03-21 16:36:49 -05:00
parent 5f5a2d38b3
commit a7077973a5

View File

@ -1,11 +1,11 @@
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }: { stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.4.14"; version = "1.4.15";
name = "ccid-${version}"; name = "ccid-${version}";
src = fetchurl { src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/c/ccid/ccid_${version}.orig.tar.bz2"; url = "https://alioth.debian.org/frs/download.php/file/3989/${name}.tar.bz2";
sha256 = "0inibkhzk4ghg85jkysscjrzshmxfdzz6b54dqj182l0isn082y5"; sha256 = "5436182246f15b3e78b1ad6707022b02dc400e3f50c4cb5e5d340a4e716d990a";
}; };
patchPhase = '' patchPhase = ''
@ -18,11 +18,11 @@ stdenv.mkDerivation rec {
buildInputs = [ pcsclite pkgconfig libusb1 ]; buildInputs = [ pcsclite pkgconfig libusb1 ];
meta = { meta = with stdenv.lib; {
description = "ccid drivers for pcsclite"; description = "ccid drivers for pcsclite";
homepage = http://pcsclite.alioth.debian.org/; homepage = http://pcsclite.alioth.debian.org/;
license = "GPLv2+"; license = licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric]; maintainers = with maintainers; [viric];
platforms = with stdenv.lib.platforms; linux; platforms = with platforms; linux;
}; };
} }