mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
26 lines
1.1 KiB
Nix
26 lines
1.1 KiB
Nix
{ lib, stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libipfix";
|
|
version = "110209";
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/libipfix/files/libipfix/libipfix_110209.tgz";
|
|
sha256 = "0h7v0sxjjdc41hl5vq2x0yhyn04bczl11bqm97825mivrvfymhn6";
|
|
};
|
|
|
|
# Workaround build failure on -fno-common toolchains:
|
|
# ld: ../libmisc/libmisc.a(mlog.o):/build/libipfix_110209/libmisc/misc.h:111: multiple definition of
|
|
# `ht_globals'; collector.o:/build/libipfix_110209/collector/../libmisc/misc.h:111: first defined here
|
|
# TODO: drop the workaround when fix ix released:
|
|
# https://sourceforge.net/p/libipfix/code/ci/a501612c6b8ac6f2df16b366f7a92211382bae6b/
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://libipfix.sourceforge.net/";
|
|
description = "Libipfix C-library implements the IPFIX protocol defined by the IP Flow Information Export working group of the IETF";
|
|
mainProgram = "ipfix_collector";
|
|
license = licenses.lgpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ lewo ];
|
|
};
|
|
}
|