2017-08-28 17:12:03 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libipfix";
|
2017-08-28 17:12:03 +01:00
|
|
|
version = "110209";
|
|
|
|
src = fetchurl {
|
2018-11-24 18:58:03 +00:00
|
|
|
url = "mirror://sourceforge/libipfix/files/libipfix/libipfix_110209.tgz";
|
2017-08-28 17:12:03 +01:00
|
|
|
sha256 = "0h7v0sxjjdc41hl5vq2x0yhyn04bczl11bqm97825mivrvfymhn6";
|
|
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://libipfix.sourceforge.net/";
|
2017-08-28 17:12:03 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|