mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
libnetfilter_acct: init at 1.0.3
This commit is contained in:
parent
5b201a8e98
commit
ace5f7ae5d
21
pkgs/development/libraries/libnetfilter_acct/default.nix
Normal file
21
pkgs/development/libraries/libnetfilter_acct/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, pkgconfig, libmnl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.3";
|
||||
name = "libnetfilter_acct-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.netfilter.org/projects/libnetfilter_acct/files/${name}.tar.bz2";
|
||||
sha256 = "06lsjndgfjsgfjr43px2n2wk3nr7whz6r405mks3887y7vpwwl22";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libmnl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.netfilter.org/projects/libnetfilter_acct/;
|
||||
description = "Userspace library providing interface to extended accounting infrastructure.";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -11213,6 +11213,8 @@ in
|
||||
|
||||
libnet = callPackage ../development/libraries/libnet { };
|
||||
|
||||
libnetfilter_acct = callPackage ../development/libraries/libnetfilter_acct { };
|
||||
|
||||
libnetfilter_conntrack = callPackage ../development/libraries/libnetfilter_conntrack { };
|
||||
|
||||
libnetfilter_cthelper = callPackage ../development/libraries/libnetfilter_cthelper { };
|
||||
|
Loading…
Reference in New Issue
Block a user