From efd51accc4f6954ffaa113f1f99bd45608c2084d Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 13 Dec 2014 01:16:48 +0300 Subject: [PATCH] Trying to update iptables - apparently, already latest --- pkgs/os-specific/linux/iptables/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/iptables/default.nix b/pkgs/os-specific/linux/iptables/default.nix index 0e022e0c4a1..2221250d57c 100644 --- a/pkgs/os-specific/linux/iptables/default.nix +++ b/pkgs/os-specific/linux/iptables/default.nix @@ -1,7 +1,8 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - name = "iptables-1.4.21"; + name = "iptables-${version}"; + version = "1.4.21"; src = fetchurl { url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2"; @@ -17,5 +18,8 @@ stdenv.mkDerivation rec { description = "A program to configure the Linux IP packet filtering ruleset"; homepage = http://www.netfilter.org/projects/iptables/index.html; platforms = stdenv.lib.platforms.linux; + downloadPage = "http://www.netfilter.org/projects/iptables/files/"; + updateWalker = true; + inherit version; }; }