mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +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.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;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user