mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
Trying to update iptables - apparently, already latest
This commit is contained in:
parent
fbceebd868
commit
efd51accc4
|
@ -1,7 +1,8 @@
|
||||||
{stdenv, fetchurl}:
|
{stdenv, fetchurl}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "iptables-1.4.21";
|
name = "iptables-${version}";
|
||||||
|
version = "1.4.21";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2";
|
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";
|
description = "A program to configure the Linux IP packet filtering ruleset";
|
||||||
homepage = http://www.netfilter.org/projects/iptables/index.html;
|
homepage = http://www.netfilter.org/projects/iptables/index.html;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
downloadPage = "http://www.netfilter.org/projects/iptables/files/";
|
||||||
|
updateWalker = true;
|
||||||
|
inherit version;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue