1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

ccid: 1.4.16 -> 1.4.18

This commit is contained in:
William A. Kennington III 2014-09-15 00:55:31 -07:00
parent ff344624d6
commit d8858f8a25

View file

@ -1,11 +1,12 @@
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
stdenv.mkDerivation rec {
version = "1.4.16";
version = "1.4.18";
name = "ccid-${version}";
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/c/ccid/ccid_${version}.orig.tar.bz2";
sha256 = "0a0e6aa38863c79e38673c085254fa94fd0aa040b9622304a8d6d4222b7e7ea0";
sha256 = "1aj14lkmfaxkhk5swqfgn2x18j7fijxs0jnxnx9cdc9f5mxaknsz";
};
patchPhase = ''
@ -18,11 +19,11 @@ stdenv.mkDerivation rec {
buildInputs = [ pcsclite pkgconfig libusb1 ];
meta = {
meta = with stdenv.lib; {
description = "ccid drivers for pcsclite";
homepage = http://pcsclite.alioth.debian.org/;
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ viric wkennington ];
platforms = with platforms; linux;
};
}