2009-02-10 16:48:30 +01:00
|
|
|
|
/* This file contains various functions that take a stdenv and return
|
|
|
|
|
a new stdenv with different behaviour, e.g. using a different C
|
|
|
|
|
compiler. */
|
|
|
|
|
|
2021-08-17 03:16:29 +02:00
|
|
|
|
{ lib, pkgs, config }:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
# N.B. Keep in sync with default arg for stdenv/generic.
|
|
|
|
|
defaultMkDerivationFromStdenv = import ./generic/make-derivation.nix { inherit lib config; };
|
|
|
|
|
|
|
|
|
|
# Low level function to help with overriding `mkDerivationFromStdenv`. One
|
|
|
|
|
# gives it the old stdenv arguments and a "continuation" function, and
|
|
|
|
|
# underneath the final stdenv argument it yields to the continuation to do
|
|
|
|
|
# whatever it wants with old `mkDerivation` (old `mkDerivationFromStdenv`
|
|
|
|
|
# applied to the *new, final* stdenv) provided for convenience.
|
|
|
|
|
withOldMkDerivation = stdenvSuperArgs: k: stdenvSelf: let
|
|
|
|
|
mkDerivationFromStdenv-super = stdenvSuperArgs.mkDerivationFromStdenv or defaultMkDerivationFromStdenv;
|
|
|
|
|
mkDerivationSuper = mkDerivationFromStdenv-super stdenvSelf;
|
|
|
|
|
in
|
|
|
|
|
k stdenvSelf mkDerivationSuper;
|
|
|
|
|
|
|
|
|
|
# Wrap the original `mkDerivation` providing extra args to it.
|
|
|
|
|
extendMkDerivationArgs = old: f: withOldMkDerivation old (_: mkDerivationSuper: args:
|
2022-06-05 13:51:57 +02:00
|
|
|
|
(mkDerivationSuper args).overrideAttrs f);
|
2021-08-17 03:16:29 +02:00
|
|
|
|
|
|
|
|
|
# Wrap the original `mkDerivation` transforming the result.
|
|
|
|
|
overrideMkDerivationResult = old: f: withOldMkDerivation old (_: mkDerivationSuper: args:
|
|
|
|
|
f (mkDerivationSuper args));
|
|
|
|
|
in
|
2012-10-31 13:41:54 +01:00
|
|
|
|
|
2009-02-10 16:48:30 +01:00
|
|
|
|
rec {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Override the compiler in stdenv for specific packages.
|
2015-01-09 20:22:12 +01:00
|
|
|
|
overrideCC = stdenv: cc: stdenv.override { allowedRequisites = null; cc = cc; };
|
2009-02-10 16:48:30 +01:00
|
|
|
|
|
2012-10-31 13:41:54 +01:00
|
|
|
|
|
2009-02-10 16:48:30 +01:00
|
|
|
|
# Add some arbitrary packages to buildInputs for specific packages.
|
2010-08-06 22:23:35 +02:00
|
|
|
|
# Used to override packages in stdenv like Make. Should not be used
|
2009-02-10 16:48:30 +01:00
|
|
|
|
# for other dependencies.
|
2014-02-04 17:18:38 +01:00
|
|
|
|
overrideInStdenv = stdenv: pkgs:
|
2020-04-28 16:51:39 +02:00
|
|
|
|
stdenv.override (prev: { allowedRequisites = null; extraBuildInputs = (prev.extraBuildInputs or []) ++ pkgs; });
|
2009-02-10 16:48:30 +01:00
|
|
|
|
|
|
|
|
|
|
2023-11-04 04:02:26 +01:00
|
|
|
|
# Override the libc++ dynamic library used in the stdenv to use the one from the platform’s
|
|
|
|
|
# default stdenv. This allows building packages and linking dependencies with different
|
|
|
|
|
# compiler versions while still using the same libc++ implementation for compatibility.
|
|
|
|
|
#
|
|
|
|
|
# Note that this adapter still uses the headers from the new stdenv’s libc++. This is necessary
|
|
|
|
|
# because older compilers may not be able to parse the headers from the default stdenv’s libc++.
|
|
|
|
|
overrideLibcxx = stdenv:
|
|
|
|
|
assert stdenv.cc.libcxx != null;
|
|
|
|
|
let
|
|
|
|
|
llvmLibcxxVersion = lib.getVersion llvmLibcxx;
|
|
|
|
|
stdenvLibcxxVersion = lib.getVersion stdenvLibcxx;
|
|
|
|
|
|
|
|
|
|
stdenvLibcxx = pkgs.stdenv.cc.libcxx;
|
|
|
|
|
stdenvCxxabi = pkgs.stdenv.cc.libcxx.cxxabi;
|
|
|
|
|
|
|
|
|
|
llvmLibcxx = stdenv.cc.libcxx;
|
|
|
|
|
llvmCxxabi = stdenv.cc.libcxx.cxxabi;
|
|
|
|
|
|
|
|
|
|
libcxx = pkgs.runCommand "${stdenvLibcxx.name}-${llvmLibcxxVersion}" {
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
inherit cxxabi;
|
|
|
|
|
isLLVM = true;
|
|
|
|
|
} ''
|
|
|
|
|
mkdir -p "$dev/nix-support"
|
|
|
|
|
ln -s '${stdenvLibcxx}' "$out"
|
|
|
|
|
echo '${stdenvLibcxx}' > "$dev/nix-support/propagated-build-inputs"
|
|
|
|
|
ln -s '${lib.getDev llvmLibcxx}/include' "$dev/include"
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
cxxabi = pkgs.runCommand "${stdenvCxxabi.name}-${llvmLibcxxVersion}" {
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
inherit (stdenvCxxabi) libName;
|
|
|
|
|
} ''
|
|
|
|
|
mkdir -p "$dev/nix-support"
|
|
|
|
|
ln -s '${stdenvCxxabi}' "$out"
|
|
|
|
|
echo '${stdenvCxxabi}' > "$dev/nix-support/propagated-build-inputs"
|
|
|
|
|
ln -s '${lib.getDev llvmCxxabi}/include' "$dev/include"
|
|
|
|
|
'';
|
|
|
|
|
in
|
|
|
|
|
overrideCC stdenv (stdenv.cc.override {
|
|
|
|
|
inherit libcxx;
|
|
|
|
|
extraPackages = [ cxxabi pkgs.pkgsTargetTarget."llvmPackages_${lib.versions.major llvmLibcxxVersion}".compiler-rt ];
|
|
|
|
|
});
|
|
|
|
|
|
2009-02-10 16:48:30 +01:00
|
|
|
|
# Override the setup script of stdenv. Useful for testing new
|
|
|
|
|
# versions of the setup script without causing a rebuild of
|
|
|
|
|
# everything.
|
|
|
|
|
#
|
|
|
|
|
# Example:
|
|
|
|
|
# randomPkg = import ../bla { ...
|
|
|
|
|
# stdenv = overrideSetup stdenv ../stdenv/generic/setup-latest.sh;
|
|
|
|
|
# };
|
2014-02-04 17:18:38 +01:00
|
|
|
|
overrideSetup = stdenv: setupScript: stdenv.override { inherit setupScript; };
|
2009-02-10 16:48:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Return a modified stdenv that tries to build statically linked
|
|
|
|
|
# binaries.
|
2021-08-17 03:16:29 +02:00
|
|
|
|
makeStaticBinaries = stdenv0:
|
|
|
|
|
stdenv0.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = withOldMkDerivation old (stdenv: mkDerivationSuper: args:
|
|
|
|
|
if stdenv.hostPlatform.isDarwin
|
2018-12-05 04:12:17 +01:00
|
|
|
|
then throw "Cannot build fully static binaries on Darwin/macOS"
|
2023-09-03 19:27:49 +02:00
|
|
|
|
else (mkDerivationSuper args).overrideAttrs (args: {
|
|
|
|
|
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_LINK or "") + " -static";
|
|
|
|
|
} // lib.optionalAttrs (!(args.dontAddStaticConfigureFlags or false)) {
|
|
|
|
|
configureFlags = (args.configureFlags or []) ++ [
|
|
|
|
|
"--disable-shared" # brrr...
|
|
|
|
|
];
|
|
|
|
|
cmakeFlags = (args.cmakeFlags or []) ++ ["-DCMAKE_SKIP_INSTALL_RPATH=On"];
|
2021-08-17 03:16:29 +02:00
|
|
|
|
}));
|
2023-07-19 21:56:18 +02:00
|
|
|
|
} // lib.optionalAttrs (stdenv0.hostPlatform.libc == "glibc") {
|
2021-08-17 03:16:29 +02:00
|
|
|
|
extraBuildInputs = (old.extraBuildInputs or []) ++ [
|
2022-05-23 20:28:14 +02:00
|
|
|
|
pkgs.glibc.static
|
2021-08-17 03:16:29 +02:00
|
|
|
|
];
|
|
|
|
|
});
|
2009-02-10 16:48:30 +01:00
|
|
|
|
|
2012-10-31 13:41:54 +01:00
|
|
|
|
|
2011-12-14 15:31:56 +01:00
|
|
|
|
# Return a modified stdenv that builds static libraries instead of
|
|
|
|
|
# shared libraries.
|
2021-08-17 03:16:29 +02:00
|
|
|
|
makeStaticLibraries = stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2010-01-21 22:42:17 +01:00
|
|
|
|
dontDisableStatic = true;
|
2021-08-17 03:16:29 +02:00
|
|
|
|
} // lib.optionalAttrs (!(args.dontAddStaticConfigureFlags or false)) {
|
2018-08-03 18:36:51 +02:00
|
|
|
|
configureFlags = (args.configureFlags or []) ++ [
|
|
|
|
|
"--enable-static"
|
|
|
|
|
"--disable-shared"
|
|
|
|
|
];
|
2019-12-29 21:40:52 +01:00
|
|
|
|
cmakeFlags = (args.cmakeFlags or []) ++ [ "-DBUILD_SHARED_LIBS:BOOL=OFF" ];
|
2019-05-09 03:52:59 +02:00
|
|
|
|
mesonFlags = (args.mesonFlags or []) ++ [ "-Ddefault_library=static" ];
|
2010-01-21 22:42:17 +01:00
|
|
|
|
});
|
2021-08-17 03:16:29 +02:00
|
|
|
|
});
|
2010-01-21 22:42:17 +01:00
|
|
|
|
|
2021-08-19 19:56:53 +02:00
|
|
|
|
# Best effort static binaries. Will still be linked to libSystem,
|
|
|
|
|
# but more portable than Nix store binaries.
|
|
|
|
|
makeStaticDarwin = stdenv: stdenv.override (old: {
|
|
|
|
|
# extraBuildInputs are dropped in cross.nix, but darwin still needs them
|
|
|
|
|
extraBuildInputs = [ pkgs.buildPackages.darwin.CF ];
|
2023-06-07 02:03:05 +02:00
|
|
|
|
mkDerivationFromStdenv = withOldMkDerivation old (stdenv: mkDerivationSuper: args:
|
|
|
|
|
(mkDerivationSuper args).overrideAttrs (finalAttrs: {
|
|
|
|
|
NIX_CFLAGS_LINK = toString (finalAttrs.NIX_CFLAGS_LINK or "")
|
2021-08-19 19:56:53 +02:00
|
|
|
|
+ lib.optionalString (stdenv.cc.isGNU or false) " -static-libgcc";
|
2023-06-07 02:03:05 +02:00
|
|
|
|
nativeBuildInputs = (finalAttrs.nativeBuildInputs or [])
|
2023-07-04 03:20:17 +02:00
|
|
|
|
++ lib.optionals stdenv.hasCC [
|
2023-06-07 02:03:05 +02:00
|
|
|
|
(pkgs.buildPackages.makeSetupHook {
|
|
|
|
|
name = "darwin-portable-libSystem-hook";
|
|
|
|
|
substitutions = {
|
|
|
|
|
libsystem = "${stdenv.cc.libc}/lib/libSystem.B.dylib";
|
2023-07-09 02:57:24 +02:00
|
|
|
|
targetPrefix = stdenv.cc.bintools.targetPrefix;
|
2023-06-07 02:03:05 +02:00
|
|
|
|
};
|
|
|
|
|
} ./darwin/portable-libsystem.sh)
|
|
|
|
|
];
|
|
|
|
|
}));
|
2021-08-19 19:56:53 +02:00
|
|
|
|
});
|
|
|
|
|
|
2021-08-20 08:03:45 +02:00
|
|
|
|
# Puts all the other ones together
|
|
|
|
|
makeStatic = stdenv: lib.foldl (lib.flip lib.id) stdenv (
|
|
|
|
|
lib.optional stdenv.hostPlatform.isDarwin makeStaticDarwin
|
|
|
|
|
|
|
|
|
|
++ [ makeStaticLibraries propagateBuildInputs ]
|
|
|
|
|
|
|
|
|
|
# Apple does not provide a static version of libSystem or crt0.o
|
|
|
|
|
# So we can’t build static binaries without extensive hacks.
|
|
|
|
|
++ lib.optional (!stdenv.hostPlatform.isDarwin) makeStaticBinaries
|
|
|
|
|
);
|
|
|
|
|
|
2019-07-24 16:04:51 +02:00
|
|
|
|
|
|
|
|
|
/* Modify a stdenv so that all buildInputs are implicitly propagated to
|
|
|
|
|
consuming derivations
|
|
|
|
|
*/
|
2021-08-17 03:16:29 +02:00
|
|
|
|
propagateBuildInputs = stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2019-07-24 16:04:51 +02:00
|
|
|
|
propagatedBuildInputs = (args.propagatedBuildInputs or []) ++ (args.buildInputs or []);
|
|
|
|
|
buildInputs = [];
|
|
|
|
|
});
|
2021-08-17 03:16:29 +02:00
|
|
|
|
});
|
2019-07-24 16:04:51 +02:00
|
|
|
|
|
|
|
|
|
|
2009-03-30 15:22:19 +02:00
|
|
|
|
/* Modify a stdenv so that the specified attributes are added to
|
|
|
|
|
every derivation returned by its mkDerivation function.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
stdenvNoOptimise =
|
|
|
|
|
addAttrsToDerivation
|
2023-02-19 20:23:32 +01:00
|
|
|
|
{ env.NIX_CFLAGS_COMPILE = "-O0"; }
|
2009-03-30 15:22:19 +02:00
|
|
|
|
stdenv;
|
|
|
|
|
*/
|
2021-08-17 03:16:29 +02:00
|
|
|
|
addAttrsToDerivation = extraAttrs: stdenv: stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (_: extraAttrs);
|
|
|
|
|
});
|
2009-03-30 15:22:19 +02:00
|
|
|
|
|
|
|
|
|
|
2009-11-21 18:50:00 +01:00
|
|
|
|
/* Use the trace output to report all processed derivations with their
|
|
|
|
|
license name.
|
|
|
|
|
*/
|
2021-08-17 03:16:29 +02:00
|
|
|
|
traceDrvLicenses = stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = overrideMkDerivationResult (pkg:
|
2009-11-21 18:50:00 +01:00
|
|
|
|
let
|
|
|
|
|
printDrvPath = val: let
|
|
|
|
|
drvPath = builtins.unsafeDiscardStringContext pkg.drvPath;
|
2012-12-28 19:35:35 +01:00
|
|
|
|
license = pkg.meta.license or null;
|
2009-11-21 18:50:00 +01:00
|
|
|
|
in
|
2012-12-28 19:35:35 +01:00
|
|
|
|
builtins.trace "@:drv:${toString drvPath}:${builtins.toString license}:@" val;
|
2009-11-21 18:50:00 +01:00
|
|
|
|
in pkg // {
|
|
|
|
|
outPath = printDrvPath pkg.outPath;
|
|
|
|
|
drvPath = printDrvPath pkg.drvPath;
|
2021-08-17 03:16:29 +02:00
|
|
|
|
});
|
|
|
|
|
});
|
2009-11-22 18:04:33 +01:00
|
|
|
|
|
2012-10-31 13:41:54 +01:00
|
|
|
|
|
|
|
|
|
/* Modify a stdenv so that it produces debug builds; that is,
|
|
|
|
|
binaries have debug info, and compiler optimisations are
|
|
|
|
|
disabled. */
|
2021-08-17 03:16:29 +02:00
|
|
|
|
keepDebugInfo = stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2012-10-31 13:41:54 +01:00
|
|
|
|
dontStrip = true;
|
2023-04-12 20:27:34 +02:00
|
|
|
|
env = (args.env or {}) // { NIX_CFLAGS_COMPILE = toString (args.env.NIX_CFLAGS_COMPILE or "") + " -ggdb -Og"; };
|
2012-10-31 13:41:54 +01:00
|
|
|
|
});
|
2021-08-17 03:16:29 +02:00
|
|
|
|
});
|
2012-10-31 13:41:54 +01:00
|
|
|
|
|
2014-02-04 16:58:12 +01:00
|
|
|
|
|
2014-10-10 14:01:38 +02:00
|
|
|
|
/* Modify a stdenv so that it uses the Gold linker. */
|
2021-08-17 03:16:29 +02:00
|
|
|
|
useGoldLinker = stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2015-05-04 14:00:12 +02:00
|
|
|
|
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_LINK or "") + " -fuse-ld=gold";
|
2014-10-10 14:01:38 +02:00
|
|
|
|
});
|
2021-08-17 03:16:29 +02:00
|
|
|
|
});
|
2018-03-21 23:22:05 +01:00
|
|
|
|
|
2023-02-17 04:18:19 +01:00
|
|
|
|
useMoldLinker = stdenv: let
|
|
|
|
|
bintools = stdenv.cc.bintools.override {
|
|
|
|
|
extraBuildCommands = ''
|
2023-10-13 02:35:26 +02:00
|
|
|
|
wrap ${stdenv.cc.bintools.targetPrefix}ld.mold ${../build-support/bintools-wrapper/ld-wrapper.sh} ${pkgs.mold}/bin/ld.mold
|
|
|
|
|
wrap ${stdenv.cc.bintools.targetPrefix}ld ${../build-support/bintools-wrapper/ld-wrapper.sh} ${pkgs.mold}/bin/ld.mold
|
2023-02-17 04:18:19 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
in stdenv.override (old: {
|
2023-10-19 14:48:42 +02:00
|
|
|
|
allowedRequisites = null;
|
|
|
|
|
cc = stdenv.cc.override { inherit bintools; };
|
|
|
|
|
# gcc >12.1.0 supports '-fuse-ld=mold'
|
|
|
|
|
# the wrap ld above in bintools supports gcc <12.1.0 and shouldn't harm >12.1.0
|
2023-02-17 04:18:19 +01:00
|
|
|
|
# https://github.com/rui314/mold#how-to-use
|
|
|
|
|
} // lib.optionalAttrs (stdenv.cc.isClang || (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "12")) {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
|
|
|
|
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_LINK or "") + " -fuse-ld=mold";
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
2018-03-21 23:22:05 +01:00
|
|
|
|
|
|
|
|
|
/* Modify a stdenv so that it builds binaries optimized specifically
|
|
|
|
|
for the machine they are built on.
|
|
|
|
|
|
|
|
|
|
WARNING: this breaks purity! */
|
2021-08-17 03:16:29 +02:00
|
|
|
|
impureUseNativeOptimizations = stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2023-04-12 20:27:34 +02:00
|
|
|
|
env = (args.env or {}) // { NIX_CFLAGS_COMPILE = toString (args.env.NIX_CFLAGS_COMPILE or "") + " -march=native"; };
|
2023-04-11 20:25:52 +02:00
|
|
|
|
|
2018-03-21 23:22:05 +01:00
|
|
|
|
NIX_ENFORCE_NO_NATIVE = false;
|
|
|
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
allowSubstitutes = false;
|
|
|
|
|
});
|
2021-08-17 03:16:29 +02:00
|
|
|
|
});
|
2021-08-24 11:17:22 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Modify a stdenv so that it builds binaries with the specified list of
|
|
|
|
|
compilerFlags appended and passed to the compiler.
|
|
|
|
|
|
|
|
|
|
This example would recompile every derivation on the system with
|
|
|
|
|
-funroll-loops and -O3 passed to each gcc invocation.
|
|
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
nixpkgs.overlays = [
|
|
|
|
|
(self: super: {
|
|
|
|
|
stdenv = super.withCFlags [ "-funroll-loops" "-O3" ] super.stdenv;
|
|
|
|
|
})
|
|
|
|
|
];
|
|
|
|
|
*/
|
|
|
|
|
withCFlags = compilerFlags: stdenv:
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2023-04-12 20:27:34 +02:00
|
|
|
|
env = (args.env or {}) // { NIX_CFLAGS_COMPILE = toString (args.env.NIX_CFLAGS_COMPILE or "") + " ${toString compilerFlags}"; };
|
2021-08-24 11:17:22 +02:00
|
|
|
|
});
|
|
|
|
|
});
|
2023-10-26 07:04:35 +02:00
|
|
|
|
|
|
|
|
|
# Overriding the SDK changes the Darwin SDK used to build the package, which:
|
|
|
|
|
# * Ensures that the compiler and bintools have the correct Libsystem version; and
|
|
|
|
|
# * Replaces any SDK references with those in the SDK corresponding to the requested SDK version.
|
|
|
|
|
#
|
|
|
|
|
# `sdkVersion` can be any of the following:
|
|
|
|
|
# * A version string indicating the requested SDK version; or
|
|
|
|
|
# * An attrset consisting of either or both of the following fields: darwinSdkVersion and darwinMinVersion.
|
|
|
|
|
overrideSDK = stdenv: sdkVersion:
|
|
|
|
|
let
|
|
|
|
|
inherit (
|
|
|
|
|
{ inherit (stdenv.hostPlatform) darwinMinVersion darwinSdkVersion; }
|
|
|
|
|
// (if lib.isAttrs sdkVersion then sdkVersion else { darwinSdkVersion = sdkVersion; })
|
|
|
|
|
) darwinMinVersion darwinSdkVersion;
|
|
|
|
|
|
|
|
|
|
sdk = pkgs.darwin."apple_sdk_${lib.replaceStrings [ "." ] [ "_" ] darwinSdkVersion}";
|
2023-11-04 06:43:16 +01:00
|
|
|
|
# TODO: Make this unconditional after #229210 has been merged,
|
|
|
|
|
# and the 10.12 SDK is updated to follow the new structure.
|
|
|
|
|
Libsystem = if darwinSdkVersion == "10.12" then pkgs.darwin.Libsystem else sdk.Libsystem;
|
2023-10-26 07:04:35 +02:00
|
|
|
|
|
|
|
|
|
replacePropagatedFrameworks = pkg:
|
|
|
|
|
let
|
2023-10-28 02:19:11 +02:00
|
|
|
|
propagatedInputs = pkg.propagatedBuildInputs;
|
|
|
|
|
mappedInputs = map mapPackageToSDK propagatedInputs;
|
|
|
|
|
|
2023-10-26 07:04:35 +02:00
|
|
|
|
env = {
|
|
|
|
|
inherit (pkg) outputs;
|
2023-10-28 02:19:11 +02:00
|
|
|
|
# Map old frameworks to new ones and the package’s outputs to their original outPaths.
|
|
|
|
|
# Also map any packages that have propagated frameworks to their proxy packages using
|
|
|
|
|
# the requested SDK version. These mappings are rendered into tab-separated files to be
|
|
|
|
|
# parsed and read back with `read`.
|
|
|
|
|
dependencies = lib.concatMapStrings (pair: "${pair.fst}\t${pair.snd}\n") (lib.zipLists propagatedInputs mappedInputs);
|
2023-10-26 07:04:35 +02:00
|
|
|
|
pkgOutputs = lib.concatMapStrings (output: "${output}\t${(lib.getOutput output pkg).outPath}\n") pkg.outputs;
|
2023-10-28 02:19:11 +02:00
|
|
|
|
passAsFile = [ "dependencies" "pkgOutputs" ];
|
2023-10-26 07:04:35 +02:00
|
|
|
|
};
|
|
|
|
|
in
|
2023-10-28 02:19:11 +02:00
|
|
|
|
# Only remap the package’s propagated inputs if there are any and if any of them were themselves remapped.
|
|
|
|
|
if lib.length propagatedInputs > 0 && propagatedInputs != mappedInputs
|
2023-10-26 07:04:35 +02:00
|
|
|
|
then pkgs.runCommand pkg.name env ''
|
|
|
|
|
# Iterate over the outputs in the package being replaced to make sure the proxy is
|
|
|
|
|
# a fully functional replacement. This is like `symlinkJoin` except for outputs and
|
|
|
|
|
# the contents of `nix-support`, which will be customized for the requested SDK.
|
|
|
|
|
while IFS=$'\t\n' read -r outputName pkgOutputPath; do
|
|
|
|
|
mkdir -p "''${!outputName}"
|
|
|
|
|
|
|
|
|
|
for targetPath in "$pkgOutputPath"/*; do
|
|
|
|
|
targetName=$(basename "$targetPath")
|
|
|
|
|
|
|
|
|
|
# `nix-support` is special-cased because any propagated inputs need their SDK
|
|
|
|
|
# frameworks replaced with those from the requested SDK.
|
|
|
|
|
if [ "$targetName" == "nix-support" ]; then
|
|
|
|
|
mkdir "''${!outputName}/nix-support"
|
|
|
|
|
|
|
|
|
|
for file in "$targetPath"/*; do
|
|
|
|
|
fileName=$(basename "$file")
|
|
|
|
|
|
|
|
|
|
if [ "$fileName" == "propagated-build-inputs" ]; then
|
|
|
|
|
cp "$file" "''${!outputName}/nix-support/$fileName"
|
|
|
|
|
|
|
|
|
|
while IFS=$'\t\n' read -r oldFramework newFramework; do
|
|
|
|
|
substituteInPlace "''${!outputName}/nix-support/$fileName" \
|
|
|
|
|
--replace "$oldFramework" "$newFramework"
|
2023-10-28 02:19:11 +02:00
|
|
|
|
done < "$dependenciesPath"
|
2023-10-26 07:04:35 +02:00
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
else
|
|
|
|
|
ln -s "$targetPath" "''${!outputName}/$targetName"
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
done < "$pkgOutputsPath"
|
|
|
|
|
''
|
|
|
|
|
else pkg;
|
|
|
|
|
|
|
|
|
|
# Remap a framework from one SDK version to another.
|
|
|
|
|
mapPackageToSDK = pkg:
|
|
|
|
|
let
|
|
|
|
|
name = lib.getName pkg;
|
|
|
|
|
framework = lib.removePrefix "apple-framework-" name;
|
|
|
|
|
in
|
2023-10-28 02:19:11 +02:00
|
|
|
|
/**/ if pkg == null then pkg
|
|
|
|
|
else if name != framework then sdk.frameworks."${framework}"
|
|
|
|
|
else replacePropagatedFrameworks pkg;
|
2023-10-26 07:04:35 +02:00
|
|
|
|
|
2023-10-31 05:14:59 +01:00
|
|
|
|
mapRuntimeToSDK = pkg:
|
|
|
|
|
# Only remap xcbuild for now, which exports the SDK used to build it.
|
2023-11-01 17:27:31 +01:00
|
|
|
|
if pkg != null && lib.isAttrs pkg && lib.getName pkg == "xcodebuild"
|
2023-10-31 05:14:59 +01:00
|
|
|
|
then pkg.override { stdenv = overrideSDK stdenv { inherit darwinMinVersion darwinSdkVersion; }; }
|
|
|
|
|
else pkg;
|
|
|
|
|
|
2023-10-26 07:04:35 +02:00
|
|
|
|
mapInputsToSDK = inputs: args:
|
2023-10-31 05:14:59 +01:00
|
|
|
|
let
|
|
|
|
|
runsAtBuild = lib.flip lib.elem [
|
|
|
|
|
"depsBuildBuild"
|
|
|
|
|
"depsBuildBuildPropagated"
|
|
|
|
|
"nativeBuildInputs"
|
|
|
|
|
"propagatedNativeBuildInputs"
|
|
|
|
|
"depsBuildTarget"
|
|
|
|
|
"depsBuildTargetPropagated"
|
|
|
|
|
];
|
|
|
|
|
atBuildInputs = lib.filter runsAtBuild inputs;
|
|
|
|
|
atRuntimeInputs = lib.subtractLists atBuildInputs inputs;
|
|
|
|
|
in
|
|
|
|
|
lib.genAttrs atRuntimeInputs (input: map mapPackageToSDK (args."${input}" or [ ]))
|
|
|
|
|
// lib.genAttrs atBuildInputs (input: map mapRuntimeToSDK (args."${input}" or [ ]));
|
2023-10-26 07:04:35 +02:00
|
|
|
|
|
|
|
|
|
mkCC = cc: cc.override {
|
2023-11-04 06:43:16 +01:00
|
|
|
|
bintools = cc.bintools.override { libc = Libsystem; };
|
|
|
|
|
libc = Libsystem;
|
2023-10-26 07:04:35 +02:00
|
|
|
|
};
|
|
|
|
|
in
|
|
|
|
|
# TODO: make this work across all input types and not just propagatedBuildInputs
|
|
|
|
|
stdenv.override (old: {
|
|
|
|
|
buildPlatform = old.buildPlatform // { inherit darwinMinVersion darwinSdkVersion; };
|
|
|
|
|
hostPlatform = old.hostPlatform // { inherit darwinMinVersion darwinSdkVersion; };
|
|
|
|
|
targetPlatform = old.targetPlatform // { inherit darwinMinVersion darwinSdkVersion; };
|
|
|
|
|
|
|
|
|
|
allowedRequisites = null;
|
|
|
|
|
cc = mkCC old.cc;
|
|
|
|
|
|
|
|
|
|
extraBuildInputs = [sdk.frameworks.CoreFoundation ];
|
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (mapInputsToSDK [
|
|
|
|
|
"buildInputs"
|
2023-10-31 05:14:59 +01:00
|
|
|
|
"nativeBuildInputs"
|
|
|
|
|
"propagatedNativeBuildInputs"
|
2023-10-28 02:47:37 +02:00
|
|
|
|
"propagatedBuildInputs"
|
2023-10-26 07:04:35 +02:00
|
|
|
|
]);
|
|
|
|
|
});
|
2009-03-30 15:22:19 +02:00
|
|
|
|
}
|