nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / os-specific / darwin / apple-source-releases / libutil / package.nix
blob95f35054e026f06e58e8f4e15678f64182c177bd
2   apple-sdk_14,
3   copyfile,
4   mkAppleDerivation,
5 }:
7 mkAppleDerivation {
8   releaseName = "libutil";
10   outputs = [
11     "out"
12     "dev"
13     "man"
14   ];
16   xcodeHash = "sha256-LwR9fmvcdJ/QYlOx+7ffhV4mKvjkwN3rX3+yHSCovKQ=";
18   patches = [
19     # The only change from macOS 13 to 14 was setting this flag. Check at runtime and only set if supported.
20     ./patches/0001-Conditionally-pre-condition.patch
21   ];
23   buildInputs = [
24     (apple-sdk_14.override { enableBootstrap = true; })
25     copyfile
26   ];
28   meta.description = "System utilities library";