2009-02-10 18:48:30 +03: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 04:16:29 +03: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:
|
|
|
|
mkDerivationSuper (args // f args));
|
|
|
|
|
|
|
|
# Wrap the original `mkDerivation` transforming the result.
|
|
|
|
overrideMkDerivationResult = old: f: withOldMkDerivation old (_: mkDerivationSuper: args:
|
|
|
|
f (mkDerivationSuper args));
|
|
|
|
in
|
2012-10-31 16:41:54 +04:00
|
|
|
|
2009-02-10 18:48:30 +03:00
|
|
|
rec {
|
|
|
|
|
|
|
|
|
|
|
|
# Override the compiler in stdenv for specific packages.
|
2015-01-09 22:22:12 +03:00
|
|
|
overrideCC = stdenv: cc: stdenv.override { allowedRequisites = null; cc = cc; };
|
2009-02-10 18:48:30 +03:00
|
|
|
|
2012-10-31 16:41:54 +04:00
|
|
|
|
2009-02-10 18:48:30 +03:00
|
|
|
# Add some arbitrary packages to buildInputs for specific packages.
|
2010-08-07 00:23:35 +04:00
|
|
|
# Used to override packages in stdenv like Make. Should not be used
|
2009-02-10 18:48:30 +03:00
|
|
|
# for other dependencies.
|
2014-02-04 20:18:38 +04:00
|
|
|
overrideInStdenv = stdenv: pkgs:
|
2020-04-28 17:51:39 +03:00
|
|
|
stdenv.override (prev: { allowedRequisites = null; extraBuildInputs = (prev.extraBuildInputs or []) ++ pkgs; });
|
2009-02-10 18:48:30 +03: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 20:18:38 +04:00
|
|
|
overrideSetup = stdenv: setupScript: stdenv.override { inherit setupScript; };
|
2009-02-10 18:48:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
# Return a modified stdenv that tries to build statically linked
|
|
|
|
# binaries.
|
2021-08-17 04:16:29 +03:00
|
|
|
makeStaticBinaries = stdenv0:
|
|
|
|
stdenv0.override (old: {
|
|
|
|
mkDerivationFromStdenv = withOldMkDerivation old (stdenv: mkDerivationSuper: args:
|
|
|
|
if stdenv.hostPlatform.isDarwin
|
2018-12-05 06:12:17 +03:00
|
|
|
then throw "Cannot build fully static binaries on Darwin/macOS"
|
2021-08-17 04:16:29 +03:00
|
|
|
else mkDerivationSuper (args // {
|
2018-12-13 23:35:50 +03:00
|
|
|
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_LINK or "") + " -static";
|
2021-08-17 04:16:29 +03:00
|
|
|
} // lib.optionalAttrs (!(args.dontAddStaticConfigureFlags or false)) {
|
2018-08-03 19:36:51 +03:00
|
|
|
configureFlags = (args.configureFlags or []) ++ [
|
|
|
|
"--disable-shared" # brrr...
|
|
|
|
];
|
2021-08-17 04:16:29 +03:00
|
|
|
}));
|
|
|
|
} // lib.optionalAttrs (stdenv0.hostPlatform.libc == "libc") {
|
|
|
|
extraBuildInputs = (old.extraBuildInputs or []) ++ [
|
|
|
|
stdenv0.glibc.static
|
|
|
|
];
|
|
|
|
});
|
2009-02-10 18:48:30 +03:00
|
|
|
|
2012-10-31 16:41:54 +04:00
|
|
|
|
2011-12-14 18:31:56 +04:00
|
|
|
# Return a modified stdenv that builds static libraries instead of
|
|
|
|
# shared libraries.
|
2021-08-17 04:16:29 +03:00
|
|
|
makeStaticLibraries = stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2010-01-22 00:42:17 +03:00
|
|
|
dontDisableStatic = true;
|
2021-08-17 04:16:29 +03:00
|
|
|
} // lib.optionalAttrs (!(args.dontAddStaticConfigureFlags or false)) {
|
2018-08-03 19:36:51 +03:00
|
|
|
configureFlags = (args.configureFlags or []) ++ [
|
|
|
|
"--enable-static"
|
|
|
|
"--disable-shared"
|
|
|
|
];
|
2019-12-29 23:40:52 +03:00
|
|
|
cmakeFlags = (args.cmakeFlags or []) ++ [ "-DBUILD_SHARED_LIBS:BOOL=OFF" ];
|
2019-05-09 04:52:59 +03:00
|
|
|
mesonFlags = (args.mesonFlags or []) ++ [ "-Ddefault_library=static" ];
|
2010-01-22 00:42:17 +03:00
|
|
|
});
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
2010-01-22 00:42:17 +03:00
|
|
|
|
2019-07-24 17:04:51 +03:00
|
|
|
|
|
|
|
/* Modify a stdenv so that all buildInputs are implicitly propagated to
|
|
|
|
consuming derivations
|
|
|
|
*/
|
2021-08-17 04:16:29 +03:00
|
|
|
propagateBuildInputs = stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2019-07-24 17:04:51 +03:00
|
|
|
propagatedBuildInputs = (args.propagatedBuildInputs or []) ++ (args.buildInputs or []);
|
|
|
|
buildInputs = [];
|
|
|
|
});
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
2019-07-24 17:04:51 +03:00
|
|
|
|
|
|
|
|
2009-03-30 17:22:19 +04:00
|
|
|
/* Modify a stdenv so that the specified attributes are added to
|
|
|
|
every derivation returned by its mkDerivation function.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
stdenvNoOptimise =
|
|
|
|
addAttrsToDerivation
|
|
|
|
{ NIX_CFLAGS_COMPILE = "-O0"; }
|
|
|
|
stdenv;
|
|
|
|
*/
|
2021-08-17 04:16:29 +03:00
|
|
|
addAttrsToDerivation = extraAttrs: stdenv: stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (_: extraAttrs);
|
|
|
|
});
|
2009-03-30 17:22:19 +04:00
|
|
|
|
|
|
|
|
2009-08-28 20:45:56 +04:00
|
|
|
/* Return a modified stdenv that builds packages with GCC's coverage
|
|
|
|
instrumentation. The coverage note files (*.gcno) are stored in
|
2009-09-02 01:56:46 +04:00
|
|
|
$out/.build, along with the source code of the package, to enable
|
|
|
|
programs like lcov to produce pretty-printed reports.
|
2009-08-28 20:45:56 +04:00
|
|
|
*/
|
|
|
|
addCoverageInstrumentation = stdenv:
|
2014-03-03 16:39:30 +04:00
|
|
|
overrideInStdenv stdenv [ pkgs.enableGCOVInstrumentation pkgs.keepBuildTree ];
|
2012-10-31 16:41:54 +04:00
|
|
|
|
2009-11-17 01:23:11 +03:00
|
|
|
|
|
|
|
/* Replace the meta.maintainers field of a derivation. This is useful
|
|
|
|
when you want to fork to update some packages without disturbing other
|
|
|
|
developers.
|
|
|
|
|
|
|
|
e.g.: in all-packages.nix:
|
|
|
|
|
|
|
|
# remove all maintainers.
|
|
|
|
defaultStdenv = replaceMaintainersField allStdenvs.stdenv pkgs [];
|
|
|
|
*/
|
2021-08-17 04:16:29 +03:00
|
|
|
replaceMaintainersField = stdenv: pkgs: maintainers:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = overrideMkDerivationResult (pkg:
|
|
|
|
lib.recursiveUpdate pkg { meta.maintainers = maintainers; });
|
|
|
|
});
|
2009-11-21 20:50:00 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* Use the trace output to report all processed derivations with their
|
|
|
|
license name.
|
|
|
|
*/
|
2021-08-17 04:16:29 +03:00
|
|
|
traceDrvLicenses = stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = overrideMkDerivationResult (pkg:
|
2009-11-21 20:50:00 +03:00
|
|
|
let
|
|
|
|
printDrvPath = val: let
|
|
|
|
drvPath = builtins.unsafeDiscardStringContext pkg.drvPath;
|
2012-12-28 22:35:35 +04:00
|
|
|
license = pkg.meta.license or null;
|
2009-11-21 20:50:00 +03:00
|
|
|
in
|
2012-12-28 22:35:35 +04:00
|
|
|
builtins.trace "@:drv:${toString drvPath}:${builtins.toString license}:@" val;
|
2009-11-21 20:50:00 +03:00
|
|
|
in pkg // {
|
|
|
|
outPath = printDrvPath pkg.outPath;
|
|
|
|
drvPath = printDrvPath pkg.drvPath;
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
|
|
|
});
|
2009-11-22 20:04:33 +03:00
|
|
|
|
2012-10-31 16:41:54 +04:00
|
|
|
|
2009-11-22 20:04:33 +03:00
|
|
|
/* Abort if the license predicate is not verified for a derivation
|
|
|
|
declared with mkDerivation.
|
|
|
|
|
|
|
|
One possible predicate to avoid all non-free packages can be achieved
|
|
|
|
with the following function:
|
|
|
|
|
|
|
|
isFree = license: with builtins;
|
2019-04-24 06:48:22 +03:00
|
|
|
if license == null then true
|
2009-11-22 20:04:33 +03:00
|
|
|
else if isList license then lib.all isFree license
|
|
|
|
else license != "non-free" && license != "unfree";
|
|
|
|
|
|
|
|
This adapter can be defined on the defaultStdenv definition. You can
|
|
|
|
use it by patching the all-packages.nix file or by using the override
|
2017-02-01 18:03:42 +03:00
|
|
|
feature of ~/.config/nixpkgs/config.nix .
|
2009-11-22 20:04:33 +03:00
|
|
|
*/
|
2021-08-17 04:16:29 +03:00
|
|
|
validateLicenses = licensePred: stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = overrideMkDerivationResult (pkg:
|
2009-11-22 20:04:33 +03:00
|
|
|
let
|
2011-11-21 00:53:15 +04:00
|
|
|
drv = builtins.unsafeDiscardStringContext pkg.drvPath;
|
2009-11-22 20:04:33 +03:00
|
|
|
license =
|
2012-12-28 22:35:35 +04:00
|
|
|
pkg.meta.license or
|
2011-11-21 00:53:15 +04:00
|
|
|
# Fixed-output derivations such as source tarballs usually
|
|
|
|
# don't have licensing information, but that's OK.
|
2012-12-28 22:35:35 +04:00
|
|
|
(pkg.outputHash or
|
|
|
|
(builtins.trace
|
|
|
|
"warning: ${drv} lacks licensing information" null));
|
2009-11-22 20:04:33 +03:00
|
|
|
|
|
|
|
validate = arg:
|
|
|
|
if licensePred license then arg
|
2011-11-21 00:42:05 +04:00
|
|
|
else abort ''
|
2011-11-21 00:53:15 +04:00
|
|
|
while building ${drv}:
|
2011-11-21 00:42:05 +04:00
|
|
|
license `${builtins.toString license}' does not pass the predicate.
|
|
|
|
'';
|
2009-11-22 20:04:33 +03:00
|
|
|
|
|
|
|
in pkg // {
|
|
|
|
outPath = validate pkg.outPath;
|
|
|
|
drvPath = validate pkg.drvPath;
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
|
|
|
});
|
2012-10-31 16:41:54 +04:00
|
|
|
|
|
|
|
|
|
|
|
/* Modify a stdenv so that it produces debug builds; that is,
|
|
|
|
binaries have debug info, and compiler optimisations are
|
|
|
|
disabled. */
|
2021-08-17 04:16:29 +03:00
|
|
|
keepDebugInfo = stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2012-10-31 16:41:54 +04:00
|
|
|
dontStrip = true;
|
2015-08-10 10:10:35 +03:00
|
|
|
NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " -ggdb -Og";
|
2012-10-31 16:41:54 +04:00
|
|
|
});
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
2012-10-31 16:41:54 +04:00
|
|
|
|
2014-02-04 19:58:12 +04:00
|
|
|
|
2014-10-10 16:01:38 +04:00
|
|
|
/* Modify a stdenv so that it uses the Gold linker. */
|
2021-08-17 04:16:29 +03:00
|
|
|
useGoldLinker = stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2015-05-04 15:00:12 +03:00
|
|
|
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_LINK or "") + " -fuse-ld=gold";
|
2014-10-10 16:01:38 +04:00
|
|
|
});
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
2018-03-22 01:22:05 +03: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 04:16:29 +03:00
|
|
|
impureUseNativeOptimizations = stdenv:
|
|
|
|
stdenv.override (old: {
|
|
|
|
mkDerivationFromStdenv = extendMkDerivationArgs old (args: {
|
2018-03-22 01:22:05 +03:00
|
|
|
NIX_CFLAGS_COMPILE = toString (args.NIX_CFLAGS_COMPILE or "") + " -march=native";
|
|
|
|
NIX_ENFORCE_NO_NATIVE = false;
|
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
allowSubstitutes = false;
|
|
|
|
});
|
2021-08-17 04:16:29 +03:00
|
|
|
});
|
2009-03-30 17:22:19 +04:00
|
|
|
}
|