nixpkgs/pkgs/tools/networking/pcapc/default.nix
Renaud 78681c277f
pcapc: 1.0.0 -> 1.0.1
And use SPDX 3.0 license identifier
(#156066)
2022-01-22 12:20:39 +01:00

25 lines
581 B
Nix

{ lib, stdenv, fetchFromGitLab, libpcap }:
stdenv.mkDerivation rec {
pname = "pcapc";
version = "1.0.1";
src = fetchFromGitLab {
owner = "post-factum";
repo = pname;
rev = "v${version}";
hash = "sha256-oDg9OSvi9aQsZ2SQm02NKAcppE0w5SGZaI13gdp7gv4=";
};
buildInputs = [ libpcap ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
meta = with lib; {
homepage = "https://gitlab.com/post-factum/pcapc";
description = "Compile libpcap filter expressions into BPF opcodes";
license = licenses.gpl3Only;
platforms = platforms.linux;
};
}