fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, stdenv, fetchurl }:
2
3stdenv.mkDerivation {
4 pname = "libipfix";
5 version = "110209";
6 src = fetchurl {
7 url = "mirror://sourceforge/libipfix/files/libipfix/libipfix_110209.tgz";
8 sha256 = "0h7v0sxjjdc41hl5vq2x0yhyn04bczl11bqm97825mivrvfymhn6";
9 };
10 meta = with lib; {
11 homepage = "http://libipfix.sourceforge.net/";
12 description = "The libipfix C-library implements the IPFIX protocol defined by the IP Flow Information Export working group of the IETF";
13 license = licenses.lgpl3;
14 platforms = platforms.linux;
15 maintainers = with maintainers; [ lewo ];
16 };
17}