libipfix: init at 110209

This commit is contained in:
Antoine Eiche 2017-08-28 18:12:03 +02:00 committed by Franz Pletz
parent c7feb2380a
commit 88dcd4d514
2 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,17 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "libipfix-${version}";
version = "110209";
src = fetchurl {
url = " http://sourceforge.net/projects/libipfix/files/libipfix/libipfix_110209.tgz";
sha256 = "0h7v0sxjjdc41hl5vq2x0yhyn04bczl11bqm97825mivrvfymhn6";
};
meta = with stdenv.lib; {
homepage = http://libipfix.sourceforge.net/;
description = "The libipfix C-library implements the IPFIX protocol defined by the IP Flow Information Export working group of the IETF.";
license = licenses.lgpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ lewo ];
};
}

View File

@ -2995,6 +2995,8 @@ with pkgs;
libfann = callPackage ../development/libraries/libfann { };
libipfix = callPackage ../development/libraries/libipfix { };
libircclient = callPackage ../development/libraries/libircclient { };
libite = callPackage ../development/libraries/libite { };