about summary refs log tree commit diff
path: root/pkgs/os-specific/bsd/freebsd/default.nix
blob: c605d9f7093749c878577d7b3f458caee9dcd372 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
  lib,
  makeScopeWithSplicing',
  generateSplicesForMkScope,
  callPackage,
  crossLibcStdenv,
  attributePathToSplice ? [ "freebsd" ],
  branch ? "release/14.0.0",
}:

let
  versions = builtins.fromJSON (builtins.readFile ./versions.json);

  badBranchError =
    branch:
    throw ''
      Unknown FreeBSD branch ${branch}!
      FreeBSD branches normally look like one of:
      * `release/<major>.<minor>.0` for tagged releases without security updates
      * `releng/<major>.<minor>` for release update branches with security updates
      * `stable/<major>` for stable versions working towards the next minor release
      * `main` for the latest development version

      Branches can be selected by overriding the `branch` attribute on the freebsd package set.
    '';

  # `./package-set.nix` should never know the name of the package set we
  # are constructing; just this function is allowed to know that. This
  # is why we:
  #
  #  - do the splicing for cross compilation here
  #
  #  - construct the *anonymized* `buildFreebsd` attribute to be passed
  #    to `./package-set.nix`.
  callFreeBSDWithAttrs =
    extraArgs:
    let
      # we do not include the branch in the splice here because the branch
      # parameter to this file will only ever take on one value - more values
      # are provided through overrides.
      otherSplices = generateSplicesForMkScope attributePathToSplice;
    in
    makeScopeWithSplicing' {
      inherit otherSplices;
      f =
        self:
        {
          inherit branch;
        }
        // callPackage ./package-set.nix (
          {
            sourceData = versions.${self.branch} or (throw (badBranchError self.branch));
            versionData = self.sourceData.version;
            buildFreebsd = otherSplices.selfBuildHost;
            patchesRoot = ./patches/${self.versionData.revision};
          }
          // extraArgs
        ) self;
    };
in
{
  freebsd = callFreeBSDWithAttrs { };
  freebsdCross = callFreeBSDWithAttrs { stdenv = crossLibcStdenv; };
}