nftables: 0.9.6 -> 0.9.7

This commit is contained in:
Izorkin 2020-10-31 18:38:30 +03:00 committed by Frederik Rietdijk
parent d0878be870
commit 2f7ce5fdc3

View File

@ -10,17 +10,17 @@
with stdenv.lib; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "0.9.6"; version = "0.9.7";
pname = "nftables"; pname = "nftables";
src = fetchurl { src = fetchurl {
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2"; url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2";
sha256 = "0vmn6xwqa1nq6crfxshh049b199d0aj6hfgin7k068xhibzgvmk8"; sha256 = "1c1c2475nifncv0ng8z77h2dpanlsx0bhqm15k00jb3a6a68lszy";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
pkgconfig bison file flex pkgconfig bison file flex
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
]; ];
buildInputs = [ buildInputs = [
@ -45,5 +45,6 @@ stdenv.mkDerivation rec {
homepage = "https://netfilter.org/projects/nftables/"; homepage = "https://netfilter.org/projects/nftables/";
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ izorkin ];
}; };
} }