1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

iptables: 1.6.0 -> 1.6.1

This commit is contained in:
Michael Raskin 2017-02-03 13:07:07 +01:00
parent fd005d0d72
commit 4101f1fd18

View file

@ -1,16 +1,16 @@
{ stdenv, fetchurl, bison, flex
{ stdenv, fetchurl, bison, flex, pkgconfig
, libnetfilter_conntrack, libnftnl, libmnl }:
stdenv.mkDerivation rec {
name = "iptables-${version}";
version = "1.6.0";
version = "1.6.1";
src = fetchurl {
url = "http://www.netfilter.org/projects/iptables/files/${name}.tar.bz2";
sha256 = "0q0w1x4aijid8wj7dg1ny9fqwll483f1sqw7kvkskd8q1c52mdsb";
sha256 = "1x8c9y340x79djsq54bc1674ryv59jfphrk4f88i7qbvbnyxghhg";
};
nativeBuildInputs = [ bison flex ];
nativeBuildInputs = [ bison flex pkgconfig ];
buildInputs = [ libnetfilter_conntrack libnftnl libmnl ];