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"; +}