Nix/package.nix

391 lines
12 KiB
Nix
Raw Permalink Normal View History

2023-11-30 23:48:44 +01:00
{ lib
, stdenv
2023-12-03 20:10:09 +01:00
, releaseTools
2023-11-30 23:48:44 +01:00
, autoconf-archive
, autoreconfHook
, aws-sdk-cpp
, boehmgc
, nlohmann_json
, bison
, boost
, brotli
, bzip2
, curl
, editline
, readline
2023-11-30 23:48:44 +01:00
, fileset
, flex
, git
, gtest
, jq
2023-12-03 20:10:09 +01:00
, doxygen
2023-11-30 23:48:44 +01:00
, libarchive
, libcpuid
, libgit2
, libseccomp
, libsodium
, lowdown
, mdbook
, mdbook-linkcheck
, mercurial
, openssh
, openssl
, pkg-config
, rapidcheck
, sqlite
, util-linux
, xz
2023-12-03 18:47:07 +01:00
2023-12-03 22:48:50 +01:00
, busybox-sandbox-shell ? null
2023-12-03 18:47:07 +01:00
# Configuration Options
2023-12-04 00:12:05 +01:00
#:
2023-12-03 18:47:07 +01:00
# This probably seems like too many degrees of freedom, but it
# faithfully reflects how the underlying configure + make build system
# work. The top-level flake.nix will choose useful combinations of these
# options to CI.
2023-12-03 18:47:07 +01:00
2023-12-03 20:10:09 +01:00
, pname ? "nix"
2023-12-04 00:12:05 +01:00
, versionSuffix ? ""
, officialRelease ? false
# Whether to build Nix. Useful to skip for tasks like (a) just
# generating API docs or (b) testing existing pre-built versions of Nix
2023-12-03 20:10:09 +01:00
, doBuild ? true
# Run the unit tests as part of the build. See `installUnitTests` for an
# alternative to this.
2023-12-03 22:48:50 +01:00
, doCheck ? __forDefaults.canRunInstalled
# Run the functional tests as part of the build.
2023-12-04 00:12:05 +01:00
, doInstallCheck ? test-client != null || __forDefaults.canRunInstalled
2023-12-03 20:10:09 +01:00
# Check test coverage of Nix. Probably want to use with with at least
# one of `doCHeck` or `doInstallCheck` enabled.
2023-12-03 20:10:09 +01:00
, withCoverageChecks ? false
2023-12-03 22:48:50 +01:00
# Whether to build the regular manual
, enableManual ? __forDefaults.canRunInstalled
# Whether to use garbage collection for the Nix language evaluator.
#
# If it is disabled, we just leak memory, but this is not as bad as it
# sounds so long as evaluation just takes places within short-lived
# processes. (When the process exits, the memory is reclaimed; it is
# only leaked *within* the process.)
, enableGC ? true
# Whether to enable Markdown rendering in the Nix binary.
, enableMarkdown ? !stdenv.hostPlatform.isWindows
# Which interactive line editor library to use for Nix's repl.
#
# Currently supported choices are:
#
# - editline (default)
# - readline
, readlineFlavor ? if stdenv.hostPlatform.isWindows then "readline" else "editline"
2023-12-03 20:10:09 +01:00
# Whether to build the internal API docs, can be done separately from
# everything else.
, enableInternalAPIDocs ? false
2023-12-03 18:47:07 +01:00
# Whether to install unit tests. This is useful when cross compiling
# since we cannot run them natively during the build, but can do so
# later.
, installUnitTests ? doBuild && !__forDefaults.canExecuteHost
2023-12-03 20:10:09 +01:00
2023-12-03 22:48:50 +01:00
# For running the functional tests against a pre-built Nix. Probably
# want to use in conjunction with `doBuild = false;`.
2023-12-03 20:10:09 +01:00
, test-daemon ? null
, test-client ? null
2023-12-03 22:48:50 +01:00
# Avoid setting things that would interfere with a functioning devShell
, forDevShell ? false
2023-12-03 22:48:50 +01:00
# Not a real argument, just the only way to approximate let-binding some
# stuff for argument defaults.
, __forDefaults ? {
canExecuteHost = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
canRunInstalled = doBuild && __forDefaults.canExecuteHost;
2023-12-03 22:48:50 +01:00
}
}:
2023-11-30 23:48:44 +01:00
let
version = lib.fileContents ./.version + versionSuffix;
2023-12-02 18:25:47 +01:00
2023-12-03 22:48:50 +01:00
# selected attributes with defaults, will be used to define some
# things which should instead be gotten via `finalAttrs` in order to
# work with overriding.
2023-12-03 20:10:09 +01:00
attrs = {
inherit doBuild doCheck doInstallCheck;
};
mkDerivation =
if withCoverageChecks
2023-12-04 00:12:05 +01:00
then
# TODO support `finalAttrs` args function in
# `releaseTools.coverageAnalysis`.
argsFun:
releaseTools.coverageAnalysis (let args = argsFun args; in args)
2023-12-03 20:10:09 +01:00
else stdenv.mkDerivation;
2023-11-30 23:48:44 +01:00
in
2023-12-03 20:10:09 +01:00
mkDerivation (finalAttrs: let
inherit (finalAttrs)
doCheck
doInstallCheck
;
doBuild = !finalAttrs.dontBuild;
2023-12-03 18:47:07 +01:00
# Either running the unit tests during the build, or installing them
# to be run later, requiresthe unit tests to be built.
2023-12-03 20:10:09 +01:00
buildUnitTests = doCheck || installUnitTests;
2023-12-03 18:47:07 +01:00
in {
2023-12-03 20:10:09 +01:00
inherit pname version;
2023-11-30 23:48:44 +01:00
src =
let
baseFiles = fileset.fileFilter (f: f.name != ".gitignore") ./.;
2023-11-30 23:48:44 +01:00
in
fileset.toSource {
root = ./.;
fileset = fileset.intersect baseFiles (fileset.unions ([
# For configure
./.version
./configure.ac
./m4
# TODO: do we really need README.md? It doesn't seem used in the build.
./README.md
# For make, regardless of what we are building
./local.mk
./Makefile
./Makefile.config.in
./mk
(fileset.fileFilter (f: lib.strings.hasPrefix "nix-profile" f.name) ./scripts)
2023-12-03 20:10:09 +01:00
] ++ lib.optionals doBuild [
2023-11-30 23:48:44 +01:00
./doc
./misc
./precompiled-headers.h
./src
./COPYING
./scripts/local.mk
] ++ lib.optionals buildUnitTests [
./doc/manual
] ++ lib.optionals enableInternalAPIDocs [
./doc/internal-api
# Source might not be compiled, but still must be available
# for Doxygen to gather comments.
./src
./tests/unit
] ++ lib.optionals buildUnitTests [
./tests/unit
] ++ lib.optionals doInstallCheck [
./tests/functional
2023-12-03 20:10:09 +01:00
]));
2023-11-30 23:48:44 +01:00
};
VERSION_SUFFIX = versionSuffix;
2023-12-03 22:48:50 +01:00
outputs = [ "out" ]
++ lib.optional doBuild "dev"
# If we are doing just build or just docs, the one thing will use
# "out". We only need additional outputs if we are doing both.
++ lib.optional (doBuild && (enableManual || enableInternalAPIDocs)) "doc"
2023-12-03 18:47:07 +01:00
++ lib.optional installUnitTests "check";
2023-11-30 23:48:44 +01:00
nativeBuildInputs = [
2023-12-04 00:12:05 +01:00
autoconf-archive
autoreconfHook
pkg-config
] ++ lib.optionals doBuild [
2023-11-30 23:48:44 +01:00
bison
flex
2023-12-04 00:12:05 +01:00
] ++ lib.optionals enableManual [
2023-11-30 23:48:44 +01:00
(lib.getBin lowdown)
mdbook
mdbook-linkcheck
2023-12-04 00:12:05 +01:00
] ++ lib.optionals (doInstallCheck || enableManual) [
jq # Also for custom mdBook preprocessor.
] ++ lib.optional stdenv.hostPlatform.isLinux util-linux
++ lib.optional enableInternalAPIDocs doxygen
;
2023-11-30 23:48:44 +01:00
2023-12-03 22:48:50 +01:00
buildInputs = lib.optionals doBuild [
2023-11-30 23:48:44 +01:00
boost
brotli
bzip2
curl
libarchive
libgit2
libsodium
openssl
sqlite
xz
({ inherit readline editline; }.${readlineFlavor})
] ++ lib.optionals enableMarkdown [
lowdown
] ++ lib.optionals buildUnitTests [
gtest
rapidcheck
2023-12-03 22:48:50 +01:00
] ++ lib.optional stdenv.isLinux libseccomp
++ lib.optional stdenv.hostPlatform.isx86_64 libcpuid
# There have been issues building these dependencies
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform && (stdenv.isLinux || stdenv.isDarwin))
(aws-sdk-cpp.override {
apis = ["s3" "transfer"];
customMemoryManagement = false;
})
2023-12-01 12:25:22 +01:00
;
2023-12-03 20:10:09 +01:00
propagatedBuildInputs = [
nlohmann_json
] ++ lib.optional enableGC boehmgc;
2023-12-03 20:10:09 +01:00
dontBuild = !attrs.doBuild;
doCheck = attrs.doCheck;
2023-12-01 12:25:22 +01:00
nativeCheckInputs = [
git
2023-12-02 17:08:06 +01:00
mercurial
openssh
2023-11-30 23:48:44 +01:00
];
disallowedReferences = [ boost ];
preConfigure = lib.optionalString (doBuild && ! stdenv.hostPlatform.isStatic) (
''
# Copy libboost_context so we don't get all of Boost in our closure.
# https://github.com/NixOS/nixpkgs/issues/45462
mkdir -p $out/lib
cp -pd ${boost}/lib/{libboost_context*,libboost_thread*,libboost_system*} $out/lib
rm -f $out/lib/*.a
'' + lib.optionalString stdenv.hostPlatform.isLinux ''
2023-12-01 12:25:22 +01:00
chmod u+w $out/lib/*.so.*
patchelf --set-rpath $out/lib:${stdenv.cc.cc.lib}/lib $out/lib/libboost_thread.so.*
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
2023-12-01 12:25:22 +01:00
for LIB in $out/lib/*.dylib; do
chmod u+w $LIB
install_name_tool -id $LIB $LIB
install_name_tool -delete_rpath ${boost}/lib/ $LIB || true
done
install_name_tool -change ${boost}/lib/libboost_system.dylib $out/lib/libboost_system.dylib $out/lib/libboost_thread.dylib
''
);
2023-11-30 23:48:44 +01:00
2023-12-03 20:10:09 +01:00
configureFlags = [
(lib.enableFeature doBuild "build")
(lib.enableFeature buildUnitTests "unit-tests")
(lib.enableFeature doInstallCheck "functional-tests")
2023-12-03 20:10:09 +01:00
(lib.enableFeature enableInternalAPIDocs "internal-api-docs")
2023-12-03 22:48:50 +01:00
(lib.enableFeature enableManual "doc-gen")
(lib.enableFeature enableGC "gc")
(lib.enableFeature enableMarkdown "markdown")
2023-12-03 20:10:09 +01:00
(lib.enableFeature installUnitTests "install-unit-tests")
(lib.withFeatureAs true "readline-flavor" readlineFlavor)
] ++ lib.optionals (!forDevShell) [
"--sysconfdir=/etc"
2023-12-03 20:10:09 +01:00
] ++ lib.optionals installUnitTests [
"--with-check-bin-dir=${builtins.placeholder "check"}/bin"
"--with-check-lib-dir=${builtins.placeholder "check"}/lib"
] ++ lib.optionals (doBuild) [
2023-12-03 20:10:09 +01:00
"--with-boost=${boost}/lib"
] ++ lib.optionals (doBuild && stdenv.isLinux) [
2023-12-03 22:48:50 +01:00
"--with-sandbox-shell=${busybox-sandbox-shell}/bin/busybox"
] ++ lib.optional (doBuild && stdenv.isLinux && !(stdenv.hostPlatform.isStatic && stdenv.system == "aarch64-linux"))
2023-12-03 20:10:09 +01:00
"LDFLAGS=-fuse-ld=gold"
2023-12-03 22:48:50 +01:00
++ lib.optional (doBuild && stdenv.hostPlatform.isStatic) "--enable-embedded-sandbox-shell"
;
2023-11-30 23:48:44 +01:00
enableParallelBuilding = true;
makeFlags = "profiledir=$(out)/etc/profile.d PRECOMPILE_HEADERS=1";
2023-12-03 20:10:09 +01:00
installTargets = lib.optional doBuild "install"
++ lib.optional enableInternalAPIDocs "internal-api-html";
2023-11-30 23:48:44 +01:00
installFlags = "sysconfdir=$(out)/etc";
2023-12-03 20:10:09 +01:00
# In this case we are probably just running tests, and so there isn't
# anything to install, we just make an empty directory to signify tests
# succeeded.
installPhase = if finalAttrs.installTargets != [] then null else ''
mkdir -p $out
'';
2023-12-03 22:48:50 +01:00
postInstall = lib.optionalString doBuild (
lib.optionalString stdenv.hostPlatform.isStatic ''
2023-11-30 23:48:44 +01:00
mkdir -p $out/nix-support
echo "file binary-dist $out/bin/nix" >> $out/nix-support/hydra-build-products
2023-12-03 22:48:50 +01:00
'' + lib.optionalString stdenv.isDarwin ''
2023-11-30 23:48:44 +01:00
install_name_tool \
-change ${boost}/lib/libboost_context.dylib \
$out/lib/libboost_context.dylib \
$out/lib/libnixutil.dylib
2023-12-03 22:48:50 +01:00
''
) + lib.optionalString enableManual ''
mkdir -p ''${!outputDoc}/nix-support
echo "doc manual ''${!outputDoc}/share/doc/nix/manual" >> ''${!outputDoc}/nix-support/hydra-build-products
'' + lib.optionalString enableInternalAPIDocs ''
2023-12-03 22:48:50 +01:00
mkdir -p ''${!outputDoc}/nix-support
echo "doc internal-api-docs $out/share/doc/nix/internal-api/html" >> ''${!outputDoc}/nix-support/hydra-build-products
2023-11-30 23:48:44 +01:00
'';
2023-12-03 20:10:09 +01:00
doInstallCheck = attrs.doInstallCheck;
2023-11-30 23:48:44 +01:00
installCheckFlags = "sysconfdir=$(out)/etc";
2023-12-04 00:57:16 +01:00
# Work around buggy detection in stdenv.
2023-12-04 00:12:05 +01:00
installCheckTarget = "installcheck";
2023-12-04 00:57:16 +01:00
# Work around weird bug where it doesn't think there is a Makefile.
2023-12-04 00:12:05 +01:00
installCheckPhase = if (!doBuild && doInstallCheck) then ''
mkdir -p src/nix-channel
make installcheck -j$NIX_BUILD_CORES -l$NIX_BUILD_CORES
'' else null;
2023-11-30 23:48:44 +01:00
2023-12-03 20:10:09 +01:00
# Needed for tests if we are not doing a build, but testing existing
# built Nix.
preInstallCheck = lib.optionalString (! doBuild) ''
mkdir -p src/nix-channel
'';
2023-11-30 23:48:44 +01:00
separateDebugInfo = !stdenv.hostPlatform.isStatic;
2023-12-04 00:12:05 +01:00
# TODO `releaseTools.coverageAnalysis` in Nixpkgs needs to be updated
# to work with `strictDeps`.
strictDeps = !withCoverageChecks;
2023-11-30 23:48:44 +01:00
hardeningDisable = lib.optional stdenv.hostPlatform.isStatic "pie";
2023-12-03 20:10:09 +01:00
meta = {
platforms = lib.platforms.unix ++ lib.platforms.windows;
2023-12-03 20:10:09 +01:00
mainProgram = "nix";
broken = !(lib.all (a: a) [
# We cannot run or install unit tests if we don't build them or
# Nix proper (which they depend on).
2023-12-03 20:10:09 +01:00
(installUnitTests -> doBuild)
(doCheck -> doBuild)
2023-12-04 00:53:05 +01:00
# The build process for the manual currently requires extracting
# data from the Nix executable we are trying to document.
(enableManual -> doBuild)
2023-12-03 20:10:09 +01:00
]);
};
} // lib.optionalAttrs withCoverageChecks {
lcovFilter = [ "*/boost/*" "*-tab.*" ];
hardeningDisable = ["fortify"];
NIX_CFLAGS_COMPILE = "-DCOVERAGE=1";
dontInstall = false;
} // lib.optionalAttrs (test-daemon != null) {
NIX_DAEMON_PACKAGE = test-daemon;
} // lib.optionalAttrs (test-client != null) {
NIX_CLIENT_PACKAGE = test-client;
2023-11-30 23:48:44 +01:00
})