Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-18.03 17 lines 621 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.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}