mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
bd01fad0ed
In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
29 lines
865 B
Nix
29 lines
865 B
Nix
{ stdenv, fetchurl, pkgconfig, docbook2x, docbook_xml_dtd_45
|
|
, flex, bison, libmnl, libnftnl, gmp, readline }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nftables-0.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://netfilter.org/projects/nftables/files/${name}.tar.bz2";
|
|
sha256 = "1mhaw7ys7ma5786xyfccgar389jsj2zp7qmvghsgr96q6grxzdhz";
|
|
};
|
|
|
|
configureFlags = [
|
|
"CONFIG_MAN=y"
|
|
"DB2MAN=docbook2man"
|
|
];
|
|
|
|
XML_CATALOG_FILES = "${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml";
|
|
|
|
buildInputs = [ pkgconfig docbook2x flex bison libmnl libnftnl gmp readline ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The project that aims to replace the existing {ip,ip6,arp,eb}tables framework";
|
|
homepage = http://netfilter.org/projects/nftables;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|