From 9145da72f5653e19afef2971e4455f562f6bb1bf Mon Sep 17 00:00:00 2001 From: Audrey Dutcher Date: Thu, 12 Jun 2025 11:23:43 -0700 Subject: [PATCH] freebsd.tip: init --- pkgs/os-specific/bsd/freebsd/pkgs/tip.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 pkgs/os-specific/bsd/freebsd/pkgs/tip.nix 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"; +}