rename logshipper -> logtap

- it matches the executable name
- it doesn't ship anything anyway, it's just plumbing
This commit is contained in:
Daniel Barlow
2025-10-05 15:13:07 +01:00
parent cacde953cb
commit a343e63231
5 changed files with 3 additions and 3 deletions

8
pkgs/logtap/default.nix Normal file
View File

@@ -0,0 +1,8 @@
{
stdenv,
}:
stdenv.mkDerivation {
name = "logtap";
makeFlags = [ "PREFIX=${placeholder "out"}" ];
src = ./.;
}