linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libipfix / default.nix
blob173bfafc8cc9c2f466d6d0f36821b5213a90093a
1 { lib, stdenv, fetchurl }:
3 stdenv.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   };