mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
conntrack_tools: 1.4.3 -> 1.4.4
This commit is contained in:
parent
8a7407e881
commit
016a194ac8
1 changed files with 8 additions and 6 deletions
|
@ -1,18 +1,20 @@
|
|||
{ fetchurl, stdenv, flex, bison, pkgconfig, libmnl, libnfnetlink
|
||||
, libnetfilter_conntrack, libnetfilter_queue, libnetfilter_cttimeout
|
||||
, libnetfilter_cthelper }:
|
||||
, libnetfilter_cthelper, systemd }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "conntrack-tools-${version}";
|
||||
version = "1.4.3";
|
||||
version = "1.4.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.netfilter.org/projects/conntrack-tools/files/${name}.tar.bz2";
|
||||
sha256 = "0mrzrzp6y41pmxc6ixc4fkgz6layrpwsmzb522adzzkc6mhcqg5g";
|
||||
sha256 = "0v5spmlcw5n6va8z34f82vcpynadb0b54pnjazgpadf0qkyg9jmp";
|
||||
};
|
||||
|
||||
buildInputs = [ libmnl libnfnetlink libnetfilter_conntrack libnetfilter_queue
|
||||
libnetfilter_cttimeout libnetfilter_cthelper ];
|
||||
buildInputs = [
|
||||
libmnl libnfnetlink libnetfilter_conntrack libnetfilter_queue
|
||||
libnetfilter_cttimeout libnetfilter_cthelper systemd
|
||||
];
|
||||
nativeBuildInputs = [ flex bison pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
@ -20,6 +22,6 @@ stdenv.mkDerivation rec {
|
|||
description = "Connection tracking userspace tools";
|
||||
platforms = platforms.linux;
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ nckx ];
|
||||
maintainers = with maintainers; [ nckx fpletz ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue