iptables: split out dev output
This commit is contained in:
parent
016a194ac8
commit
210f894c12
@ -1,4 +1,5 @@
|
|||||||
{stdenv, fetchurl, bison, flex, libnetfilter_conntrack, libnftnl, libmnl}:
|
{ stdenv, fetchurl, bison, flex
|
||||||
|
, libnetfilter_conntrack, libnftnl, libmnl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "iptables-${version}";
|
name = "iptables-${version}";
|
||||||
@ -22,10 +23,13 @@ stdenv.mkDerivation rec {
|
|||||||
--enable-shared
|
--enable-shared
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
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 = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ fpletz ];
|
||||||
downloadPage = "http://www.netfilter.org/projects/iptables/files/";
|
downloadPage = "http://www.netfilter.org/projects/iptables/files/";
|
||||||
updateWalker = true;
|
updateWalker = true;
|
||||||
inherit version;
|
inherit version;
|
||||||
|
@ -11087,7 +11087,9 @@ in
|
|||||||
inherit (perlPackages) SGMLSpm;
|
inherit (perlPackages) SGMLSpm;
|
||||||
};
|
};
|
||||||
|
|
||||||
iptables = callPackage ../os-specific/linux/iptables { };
|
iptables = callPackage ../os-specific/linux/iptables {
|
||||||
|
flex = flex_2_5_35;
|
||||||
|
};
|
||||||
|
|
||||||
ipset = callPackage ../os-specific/linux/ipset { };
|
ipset = callPackage ../os-specific/linux/ipset { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user