lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

libipfix: init at 110209

authored by

Antoine Eiche and committed by
Franz Pletz
88dcd4d5 c7feb238

+19
+17
pkgs/development/libraries/libipfix/default.nix
··· 1 + { stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "libipfix-${version}"; 5 + version = "110209"; 6 + src = fetchurl { 7 + url = " http://sourceforge.net/projects/libipfix/files/libipfix/libipfix_110209.tgz"; 8 + sha256 = "0h7v0sxjjdc41hl5vq2x0yhyn04bczl11bqm97825mivrvfymhn6"; 9 + }; 10 + meta = with stdenv.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 + }
+2
pkgs/top-level/all-packages.nix
··· 2995 2995 2996 2996 libfann = callPackage ../development/libraries/libfann { }; 2997 2997 2998 + libipfix = callPackage ../development/libraries/libipfix { }; 2999 + 2998 3000 libircclient = callPackage ../development/libraries/libircclient { }; 2999 3001 3000 3002 libite = callPackage ../development/libraries/libite { };