Skip to content

Commit

Permalink
libfds: init at 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaroslavpesek committed Feb 18, 2025
1 parent afca0bd commit c6c8d44
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pkgs/by-name/li/libfds/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
stdenv,
lib,
fetchFromGitHub,
cmake,
libxml2,
lz4,
zstd,
}:

stdenv.mkDerivation rec {
pname = "libfds";
version = "0.5.0";

src = fetchFromGitHub {
owner = "CESNET";
repo = "libfds";
tag = "v${version}";
hash = "sha256-rYEUjMnKPxE0HxPZZ58DwrhPb89NpIjEnftqbsfkvTU=";
};

buildInputs = [
libxml2
lz4
zstd
];
nativeBuildInputs = [ cmake ];

meta = {
description = "Components for parsing and processing IPFIX Messages";
homepage = "https://github.com/CESNET/libfds";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ jaroslavpesek ];
};
}

0 comments on commit c6c8d44

Please sign in to comment.