nixpkgs/pkgs/development/libraries/libipfix/default.nix

18 lines
596 B
Nix
Raw Normal View History

2017-08-28 16:12:03 +00:00
{ stdenv, fetchurl }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "libipfix";
2017-08-28 16:12:03 +00: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 16:12:03 +00:00
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 ];
};
}