Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d0878be870c0
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2f7ce5fdc3c7
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Nov 18, 2020

  1. nftables: 0.9.6 -> 0.9.7

    Izorkin authored and FRidh committed Nov 18, 2020
    Copy the full SHA
    2f7ce5f View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/os-specific/linux/nftables/default.nix
7 changes: 4 additions & 3 deletions pkgs/os-specific/linux/nftables/default.nix
Original file line number Diff line number Diff line change
@@ -10,17 +10,17 @@
with stdenv.lib;

stdenv.mkDerivation rec {
version = "0.9.6";
version = "0.9.7";
pname = "nftables";

src = fetchurl {
url = "https://netfilter.org/projects/nftables/files/${pname}-${version}.tar.bz2";
sha256 = "0vmn6xwqa1nq6crfxshh049b199d0aj6hfgin7k068xhibzgvmk8";
sha256 = "1c1c2475nifncv0ng8z77h2dpanlsx0bhqm15k00jb3a6a68lszy";
};

nativeBuildInputs = [
pkgconfig bison file flex
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
asciidoc docbook_xml_dtd_45 docbook_xsl findXMLCatalogs libxslt
];

buildInputs = [
@@ -45,5 +45,6 @@ stdenv.mkDerivation rec {
homepage = "https://netfilter.org/projects/nftables/";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ izorkin ];
};
}