Files
liminix/pkgs/logtap/default.nix
Daniel Barlow a343e63231 rename logshipper -> logtap
- it matches the executable name
- it doesn't ship anything anyway, it's just plumbing
2025-10-08 20:10:11 +01:00

9 lines
120 B
Nix

{
stdenv,
}:
stdenv.mkDerivation {
name = "logtap";
makeFlags = [ "PREFIX=${placeholder "out"}" ];
src = ./.;
}