summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/ccid
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-09-15 00:55:31 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-09-15 01:08:28 -0700
commitd8858f8a25ffd064877488dc266c5dddd9a361dd (patch)
tree1cef1e09986907fa39a4cf8ff29cd78f91f0a7be /pkgs/tools/security/ccid
parentff344624d612aad36c85aa1aeceda07c8c640ccd (diff)
ccid: 1.4.16 -> 1.4.18
Diffstat (limited to 'pkgs/tools/security/ccid')
-rw-r--r--pkgs/tools/security/ccid/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/security/ccid/default.nix b/pkgs/tools/security/ccid/default.nix
index 42af2e0b57e8..c9a261ba97a8 100644
--- a/pkgs/tools/security/ccid/default.nix
+++ b/pkgs/tools/security/ccid/default.nix
@@ -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;
};
}