From fdf5e52be8ff2e0b78ea8f2b81fea4281775b629 Mon Sep 17 00:00:00 2001 From: Audrey Dutcher Date: Sat, 31 May 2025 21:56:48 -0700 Subject: [PATCH] freebsd.pciconf: init --- pkgs/os-specific/bsd/freebsd/pkgs/pciconf.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pkgs/os-specific/bsd/freebsd/pkgs/pciconf.nix diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/pciconf.nix b/pkgs/os-specific/bsd/freebsd/pkgs/pciconf.nix new file mode 100644 index 000000000000..a2e5b03d2e22 --- /dev/null +++ b/pkgs/os-specific/bsd/freebsd/pkgs/pciconf.nix @@ -0,0 +1,16 @@ +{ + lib, + mkDerivation, +}: +mkDerivation { + path = "usr.sbin/pciconf"; + + outputs = [ + "out" + "man" + "debug" + ]; + + meta.platorms = lib.platforms.freebsd; + meta.mainProgram = "pciconf"; +}