From ddd95200118e4285851bfb34b6ba9ab1f1272cb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 24 May 2016 10:34:51 +0200 Subject: [PATCH] libreswan: security update 3.16 -> 3.17 Fixes #15645. It complained about a missing header, so I added nss to buildInputs instead of just nssTools. --- pkgs/tools/networking/libreswan/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/libreswan/default.nix b/pkgs/tools/networking/libreswan/default.nix index 1a040652ff4e..a2204f9664a1 100644 --- a/pkgs/tools/networking/libreswan/default.nix +++ b/pkgs/tools/networking/libreswan/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, makeWrapper, pkgconfig, systemd, gmp, unbound, bison, flex, pam, libevent, libcap_ng, curl, nspr, - bash, iproute, iptables, procps, coreutils, gnused, gawk, nssTools, which, python, + bash, iproute, iptables, procps, coreutils, gnused, gawk, nss, which, python, docs ? false, xmlto }: let optional = stdenv.lib.optional; - version = "3.16"; + version = "3.17"; name = "libreswan-${version}"; binPath = stdenv.lib.makeBinPath [ - bash iproute iptables procps coreutils gnused gawk nssTools which python + bash iproute iptables procps coreutils gnused gawk nss.tools which python ]; in @@ -21,12 +21,12 @@ stdenv.mkDerivation { src = fetchurl { url = "https://download.libreswan.org/${name}.tar.gz"; - sha256 = "15qv4101p1jw591l04gsfscb3farzd278mgi8yph015vmifyjxrd"; + sha256 = "00qd1n6f5w4xr06yanfpnbnn7y7rq2m878ifa3hh13bdgzsqdhi8"; }; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ pkgconfig bash iproute iptables systemd coreutils gnused gawk gmp unbound bison flex pam libevent - libcap_ng curl nspr nssTools python ] + libcap_ng curl nspr nss python ] ++ optional docs xmlto; prePatch = ''