about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/lib/default.nix
blob: 30fea7e17dce68eb6d69d4678621f025e40b25de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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;
}