nixpkgs/pkgs/os-specific/bsd/freebsd/lib/default.nix
2024-05-06 10:59:45 -04:00

19 lines
336 B
Nix

{ version }:
{
inherit version;
mkBsdArch =
stdenv':
{
x86_64 = "amd64";
aarch64 = "arm64";
i486 = "i386";
i586 = "i386";
i686 = "i386";
}
.${stdenv'.hostPlatform.parsed.cpu.name} or stdenv'.hostPlatform.parsed.cpu.name;
install-wrapper = builtins.readFile ./install-wrapper.sh;
}