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