1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

libksba: 1.3.3 -> 1.3.4

Contains a fix for https://access.redhat.com/security/cve/CVE-2016-4574
This commit is contained in:
Joachim Fasting 2016-05-14 08:25:36 +02:00
parent 3f0518ac4d
commit 7e4db700dc
No known key found for this signature in database
GPG key ID: 4330820E1E04DCF4

View file

@ -1,18 +1,18 @@
{ stdenv, fetchurl, libgpgerror }:
stdenv.mkDerivation rec {
name = "libksba-1.3.3";
name = "libksba-1.3.4";
src = fetchurl {
url = "mirror://gnupg/libksba/${name}.tar.bz2";
sha256 = "11kp3h9l3b8ikydkcdkwgx45r662zi30m26ra5llyhfh6kz5yzqc";
sha256 = "0kxdb02z41cwm1xbwfwj9nbc0dzjhwyq8c475mlhhmpcxcy8ihpn";
};
propagatedBuildInputs = [ libgpgerror ];
meta = with stdenv.lib; {
homepage = http://www.gnupg.org;
description = "CMS and X.509 access library under development";
homepage = https://www.gnupg.org;
description = "CMS and X.509 access library";
platforms = platforms.all;
license = licenses.lgpl3;
maintainers = with maintainers; [ wkennington ];