diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/tip.nix b/pkgs/os-specific/bsd/freebsd/pkgs/tip.nix new file mode 100644 index 000000000000..0cc1b74b9d83 --- /dev/null +++ b/pkgs/os-specific/bsd/freebsd/pkgs/tip.nix @@ -0,0 +1,19 @@ +{ + lib, + mkDerivation, +}: +mkDerivation { + path = "usr.bin/tip"; + extraPaths = [ + "usr.bin/Makefile.inc" + ]; + + outputs = [ + "out" + "man" + "debug" + ]; + + meta.platforms = lib.platforms.freebsd; + meta.mainProgram = "tip"; +}