summary refs log tree commit diff
path: root/pkgs/os-specific/linux/conntrack-tools
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-10 22:52:12 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-09-10 23:01:30 +0200
commiteb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa (patch)
treee480626bd46d7d3a5170d906b65e2b0b82fb39ee /pkgs/os-specific/linux/conntrack-tools
parent7ed73b29ba939c213cb735f78a406c8f841d2c64 (diff)
downloadnixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.tar
nixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.tar.gz
nixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.tar.bz2
nixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.tar.lz
nixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.tar.xz
nixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.tar.zst
nixpkgs-eb6b290ab31ebe7a4a3af4effd6981d5e62f1ffa.zip
conntrack_tools: 1.4.2 -> 1.4.3; maintain
Diffstat (limited to 'pkgs/os-specific/linux/conntrack-tools')
-rw-r--r--pkgs/os-specific/linux/conntrack-tools/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/conntrack-tools/default.nix b/pkgs/os-specific/linux/conntrack-tools/default.nix
index 51358628ff1..f0988759bc4 100644
--- a/pkgs/os-specific/linux/conntrack-tools/default.nix
+++ b/pkgs/os-specific/linux/conntrack-tools/default.nix
@@ -4,11 +4,11 @@
 
 stdenv.mkDerivation rec {
   name = "conntrack-tools-${version}";
-  version = "1.4.2";
+  version = "1.4.3";
 
   src = fetchurl {
     url = "http://www.netfilter.org/projects/conntrack-tools/files/${name}.tar.bz2";
-    sha256 = "e5c423dc077f9ca8767eaa6cf40446943905711c6a8fe27f9cc1977d4d6aa11e";
+    sha256 = "0mrzrzp6y41pmxc6ixc4fkgz6layrpwsmzb522adzzkc6mhcqg5g";
   };
 
   buildInputs = [ libmnl libnfnetlink libnetfilter_conntrack libnetfilter_queue
@@ -20,5 +20,6 @@ stdenv.mkDerivation rec {
     description = "Connection tracking userspace tools";
     platforms = platforms.linux;
     license = licenses.gpl2Plus;
+    maintainers = with maintainers; [ nckx ];
   };
 }