2019-04-08 15:28:05 +00:00
|
|
|
|
{
|
|
|
|
|
description = "The purely functional package manager";
|
|
|
|
|
|
2024-03-08 19:51:26 +00:00
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11-small";
|
2022-05-16 18:46:44 +00:00
|
|
|
|
inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2";
|
2023-03-06 19:51:58 +00:00
|
|
|
|
inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
|
2019-04-08 15:28:05 +00:00
|
|
|
|
|
2024-03-05 23:38:02 +00:00
|
|
|
|
outputs = { self, nixpkgs, nixpkgs-regression, flake-compat }:
|
2019-04-08 15:28:05 +00:00
|
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
|
let
|
2022-03-02 02:40:18 +00:00
|
|
|
|
inherit (nixpkgs) lib;
|
2024-03-08 19:51:26 +00:00
|
|
|
|
inherit (lib) fileset;
|
2019-05-29 15:25:41 +00:00
|
|
|
|
|
2022-01-24 23:13:54 +00:00
|
|
|
|
officialRelease = true;
|
2022-12-06 17:00:10 +00:00
|
|
|
|
|
2024-03-04 06:11:19 +00:00
|
|
|
|
# Set to true to build the release notes for the next release.
|
|
|
|
|
buildUnreleasedNotes = false;
|
|
|
|
|
|
2022-03-02 02:40:18 +00:00
|
|
|
|
version = lib.fileContents ./.version + versionSuffix;
|
2020-03-31 22:20:12 +00:00
|
|
|
|
versionSuffix =
|
|
|
|
|
if officialRelease
|
|
|
|
|
then ""
|
2020-10-21 19:31:19 +00:00
|
|
|
|
else "pre${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}_${self.shortRev or "dirty"}";
|
2020-03-13 17:28:01 +00:00
|
|
|
|
|
2023-08-23 18:28:24 +00:00
|
|
|
|
linux32BitSystems = [ "i686-linux" ];
|
2020-10-28 05:13:18 +00:00
|
|
|
|
linux64BitSystems = [ "x86_64-linux" "aarch64-linux" ];
|
2023-08-23 18:28:24 +00:00
|
|
|
|
linuxSystems = linux32BitSystems ++ linux64BitSystems;
|
|
|
|
|
darwinSystems = [ "x86_64-darwin" "aarch64-darwin" ];
|
|
|
|
|
systems = linuxSystems ++ darwinSystems;
|
2023-10-05 16:12:18 +00:00
|
|
|
|
|
2023-09-25 17:46:55 +00:00
|
|
|
|
crossSystems = [
|
|
|
|
|
"armv6l-linux" "armv7l-linux"
|
|
|
|
|
"x86_64-freebsd13" "x86_64-netbsd"
|
|
|
|
|
];
|
2021-02-06 00:07:48 +00:00
|
|
|
|
|
2024-03-04 06:48:42 +00:00
|
|
|
|
stdenvs = [ "gccStdenv" "clangStdenv" "stdenv" "libcxxStdenv" "ccacheStdenv" ];
|
2021-07-08 15:01:51 +00:00
|
|
|
|
|
2022-03-02 02:40:18 +00:00
|
|
|
|
forAllSystems = lib.genAttrs systems;
|
|
|
|
|
|
|
|
|
|
forAllCrossSystems = lib.genAttrs crossSystems;
|
|
|
|
|
|
|
|
|
|
forAllStdenvs = f:
|
|
|
|
|
lib.listToAttrs
|
2021-07-08 15:01:51 +00:00
|
|
|
|
(map
|
2022-03-02 02:40:18 +00:00
|
|
|
|
(stdenvName: {
|
|
|
|
|
name = "${stdenvName}Packages";
|
|
|
|
|
value = f stdenvName;
|
|
|
|
|
})
|
|
|
|
|
stdenvs);
|
2021-07-08 15:01:51 +00:00
|
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
|
# Memoize nixpkgs for different platforms for efficiency.
|
2022-03-02 02:40:18 +00:00
|
|
|
|
nixpkgsFor = forAllSystems
|
|
|
|
|
(system: let
|
|
|
|
|
make-pkgs = crossSystem: stdenv: import nixpkgs {
|
2023-09-25 17:46:55 +00:00
|
|
|
|
localSystem = {
|
|
|
|
|
inherit system;
|
|
|
|
|
};
|
|
|
|
|
crossSystem = if crossSystem == null then null else {
|
|
|
|
|
system = crossSystem;
|
|
|
|
|
} // lib.optionalAttrs (crossSystem == "x86_64-freebsd13") {
|
|
|
|
|
useLLVM = true;
|
|
|
|
|
};
|
2022-03-02 02:40:18 +00:00
|
|
|
|
overlays = [
|
|
|
|
|
(overlayFor (p: p.${stdenv}))
|
|
|
|
|
];
|
2024-03-08 19:51:26 +00:00
|
|
|
|
|
|
|
|
|
config.permittedInsecurePackages = [ "nix-2.13.6" ];
|
2022-03-02 02:40:18 +00:00
|
|
|
|
};
|
|
|
|
|
stdenvs = forAllStdenvs (make-pkgs null);
|
|
|
|
|
native = stdenvs.stdenvPackages;
|
|
|
|
|
in {
|
|
|
|
|
inherit stdenvs native;
|
|
|
|
|
static = native.pkgsStatic;
|
|
|
|
|
cross = forAllCrossSystems (crossSystem: make-pkgs crossSystem "stdenv");
|
|
|
|
|
});
|
2019-10-04 08:45:33 +00:00
|
|
|
|
|
2024-03-05 23:26:46 +00:00
|
|
|
|
testNixVersions = pkgs: client: daemon: let
|
|
|
|
|
nix = pkgs.callPackage ./package.nix {
|
|
|
|
|
pname =
|
|
|
|
|
"nix-tests"
|
|
|
|
|
+ lib.optionalString
|
|
|
|
|
(lib.versionAtLeast daemon.version "2.4pre20211005" &&
|
|
|
|
|
lib.versionAtLeast client.version "2.4pre20211005")
|
2021-10-05 12:50:55 +00:00
|
|
|
|
"-${client.version}-against-${daemon.version}";
|
2021-03-16 12:43:08 +00:00
|
|
|
|
|
2024-03-05 23:26:46 +00:00
|
|
|
|
inherit fileset;
|
|
|
|
|
};
|
|
|
|
|
in nix.overrideAttrs (prevAttrs: {
|
|
|
|
|
NIX_DAEMON_PACKAGE = daemon;
|
|
|
|
|
NIX_CLIENT_PACKAGE = client;
|
2021-03-16 12:43:08 +00:00
|
|
|
|
|
2024-03-04 03:01:54 +00:00
|
|
|
|
dontBuild = true;
|
2021-03-16 12:43:08 +00:00
|
|
|
|
doInstallCheck = true;
|
|
|
|
|
|
2024-03-05 23:26:46 +00:00
|
|
|
|
configureFlags = prevAttrs.configureFlags ++ [
|
|
|
|
|
# We don't need the actual build here.
|
|
|
|
|
"--disable-build"
|
|
|
|
|
];
|
|
|
|
|
|
2021-03-16 12:43:08 +00:00
|
|
|
|
installPhase = ''
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
'';
|
|
|
|
|
|
2024-03-05 23:26:46 +00:00
|
|
|
|
installCheckPhase = lib.optionalString pkgs.stdenv.hostPlatform.isDarwin ''
|
2024-03-08 19:51:26 +00:00
|
|
|
|
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
|
2024-03-05 23:26:46 +00:00
|
|
|
|
'' + ''
|
2024-03-04 03:01:54 +00:00
|
|
|
|
mkdir -p src/nix-channel
|
|
|
|
|
make installcheck -j$NIX_BUILD_CORES -l$NIX_BUILD_CORES
|
|
|
|
|
'';
|
2024-03-05 23:26:46 +00:00
|
|
|
|
});
|
2021-03-16 12:43:08 +00:00
|
|
|
|
|
2022-03-02 02:40:18 +00:00
|
|
|
|
binaryTarball = nix: pkgs:
|
2022-01-25 00:28:44 +00:00
|
|
|
|
let
|
2022-03-02 02:40:18 +00:00
|
|
|
|
inherit (pkgs) buildPackages;
|
2024-03-14 18:15:46 +00:00
|
|
|
|
installerClosureInfo = buildPackages.closureInfo { rootPaths = [ nix ]; };
|
2022-01-25 00:28:44 +00:00
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
buildPackages.runCommand "nix-binary-tarball-${version}"
|
|
|
|
|
{ #nativeBuildInputs = lib.optional (system != "aarch64-linux") shellcheck;
|
|
|
|
|
meta.description = "Distribution-independent Nix bootstrap binaries for ${pkgs.system}";
|
|
|
|
|
}
|
|
|
|
|
''
|
|
|
|
|
cp ${installerClosureInfo}/registration $TMPDIR/reginfo
|
2024-03-14 18:15:46 +00:00
|
|
|
|
|
2022-01-25 00:28:44 +00:00
|
|
|
|
dir=nix-${version}-${pkgs.system}
|
|
|
|
|
fn=$out/$dir.tar.xz
|
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
echo "file binary-dist $fn" >> $out/nix-support/hydra-build-products
|
|
|
|
|
tar cvfJ $fn \
|
|
|
|
|
--owner=0 --group=0 --mode=u+rw,uga+r \
|
2022-09-05 12:44:01 +00:00
|
|
|
|
--mtime='1970-01-01' \
|
2022-01-25 00:28:44 +00:00
|
|
|
|
--absolute-names \
|
|
|
|
|
--hard-dereference \
|
|
|
|
|
--transform "s,$TMPDIR/reginfo,$dir/.reginfo," \
|
|
|
|
|
--transform "s,$NIX_STORE,$dir/store,S" \
|
|
|
|
|
$TMPDIR/reginfo \
|
|
|
|
|
$(cat ${installerClosureInfo}/store-paths)
|
|
|
|
|
'';
|
2021-06-26 05:12:03 +00:00
|
|
|
|
|
2021-07-08 15:01:51 +00:00
|
|
|
|
overlayFor = getStdenv: final: prev:
|
2024-03-01 20:15:44 +00:00
|
|
|
|
let
|
|
|
|
|
currentStdenv = getStdenv final;
|
|
|
|
|
comDeps = with final; commonDeps {
|
2023-02-21 15:15:24 +00:00
|
|
|
|
inherit pkgs;
|
|
|
|
|
inherit (currentStdenv.hostPlatform) isStatic;
|
|
|
|
|
};
|
2024-03-01 20:15:44 +00:00
|
|
|
|
in {
|
|
|
|
|
nixStable = prev.nix;
|
2020-02-15 20:30:26 +00:00
|
|
|
|
|
2024-03-01 20:15:44 +00:00
|
|
|
|
# Forward from the previous stage as we don’t want it to pick the lowdown override
|
|
|
|
|
nixUnstable = prev.nixUnstable;
|
|
|
|
|
|
2024-03-26 17:32:25 +00:00
|
|
|
|
build-release-notes =
|
|
|
|
|
final.buildPackages.callPackage ./maintainers/build-release-notes.nix { };
|
2024-03-19 06:03:48 +00:00
|
|
|
|
clangbuildanalyzer = final.buildPackages.callPackage ./misc/clangbuildanalyzer.nix { };
|
2024-03-09 08:22:06 +00:00
|
|
|
|
boehmgc-nix = (final.boehmgc.override {
|
|
|
|
|
enableLargeConfig = true;
|
|
|
|
|
}).overrideAttrs (o: {
|
|
|
|
|
patches = (o.patches or [ ]) ++ [
|
|
|
|
|
./boehmgc-coroutine-sp-fallback.diff
|
|
|
|
|
|
|
|
|
|
# https://github.com/ivmai/bdwgc/pull/586
|
|
|
|
|
./boehmgc-traceable_allocator-public.diff
|
|
|
|
|
];
|
|
|
|
|
});
|
2024-03-01 20:15:44 +00:00
|
|
|
|
|
|
|
|
|
default-busybox-sandbox-shell = final.busybox.override {
|
|
|
|
|
useMusl = true;
|
|
|
|
|
enableStatic = true;
|
|
|
|
|
enableMinimal = true;
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
CONFIG_FEATURE_FANCY_ECHO y
|
|
|
|
|
CONFIG_FEATURE_SH_MATH y
|
|
|
|
|
CONFIG_FEATURE_SH_MATH_64 y
|
|
|
|
|
|
|
|
|
|
CONFIG_ASH y
|
|
|
|
|
CONFIG_ASH_OPTIMIZE_FOR_SIZE y
|
|
|
|
|
|
|
|
|
|
CONFIG_ASH_ALIAS y
|
|
|
|
|
CONFIG_ASH_BASH_COMPAT y
|
|
|
|
|
CONFIG_ASH_CMDCMD y
|
|
|
|
|
CONFIG_ASH_ECHO y
|
|
|
|
|
CONFIG_ASH_GETOPTS y
|
|
|
|
|
CONFIG_ASH_INTERNAL_GLOB y
|
|
|
|
|
CONFIG_ASH_JOB_CONTROL y
|
|
|
|
|
CONFIG_ASH_PRINTF y
|
|
|
|
|
CONFIG_ASH_TEST y
|
2024-03-08 19:51:26 +00:00
|
|
|
|
'';
|
2024-03-01 20:15:44 +00:00
|
|
|
|
};
|
2024-03-08 19:51:26 +00:00
|
|
|
|
|
2024-03-01 20:15:44 +00:00
|
|
|
|
nix = final.callPackage ./package.nix {
|
|
|
|
|
inherit versionSuffix fileset;
|
|
|
|
|
stdenv = currentStdenv;
|
|
|
|
|
boehmgc = final.boehmgc-nix;
|
|
|
|
|
busybox-sandbox-shell = final.busybox-sandbox-shell or final.default-busybox-sandbox-shell;
|
|
|
|
|
};
|
2020-07-22 11:51:11 +00:00
|
|
|
|
};
|
2020-03-13 17:31:16 +00:00
|
|
|
|
|
2021-07-08 15:01:51 +00:00
|
|
|
|
in {
|
|
|
|
|
# A Nixpkgs overlay that overrides the 'nix' and
|
|
|
|
|
# 'nix.perl-bindings' packages.
|
2022-02-11 14:05:07 +00:00
|
|
|
|
overlays.default = overlayFor (p: p.stdenv);
|
2021-07-08 15:01:51 +00:00
|
|
|
|
|
2020-03-13 17:31:16 +00:00
|
|
|
|
hydraJobs = {
|
|
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
|
# Binary package for various platforms.
|
2022-03-02 02:40:18 +00:00
|
|
|
|
build = forAllSystems (system: self.packages.${system}.nix);
|
2020-07-30 19:59:57 +00:00
|
|
|
|
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
# FIXME(Qyriad): remove this when the migration to Meson has been completed.
|
2024-03-25 21:16:38 +00:00
|
|
|
|
# NOTE: mesonBuildClang depends on mesonBuild depends on build to avoid OOMs
|
|
|
|
|
# on aarch64 builders caused by too many parallel compiler/linker processes.
|
|
|
|
|
mesonBuild = forAllSystems (system:
|
|
|
|
|
(self.packages.${system}.nix.override {
|
|
|
|
|
buildWithMeson = true;
|
|
|
|
|
}).overrideAttrs (prev: {
|
|
|
|
|
buildInputs = prev.buildInputs ++ [ self.packages.${system}.nix ];
|
|
|
|
|
}));
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
mesonBuildClang = forAllSystems (system:
|
2024-03-25 21:16:38 +00:00
|
|
|
|
(nixpkgsFor.${system}.stdenvs.clangStdenvPackages.nix.override {
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
buildWithMeson = true;
|
2024-03-25 21:16:38 +00:00
|
|
|
|
}).overrideAttrs (prev: {
|
|
|
|
|
buildInputs = prev.buildInputs ++ [ self.hydraJobs.mesonBuild.${system} ];
|
|
|
|
|
})
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
);
|
|
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
|
# Perl bindings for various platforms.
|
2022-03-02 02:40:18 +00:00
|
|
|
|
perlBindings = forAllSystems (system: nixpkgsFor.${system}.native.nix.perl-bindings);
|
2019-10-04 08:45:33 +00:00
|
|
|
|
|
|
|
|
|
# Binary tarball for various platforms, containing a Nix store
|
2024-03-14 18:15:46 +00:00
|
|
|
|
# with the closure of 'nix' package.
|
2022-03-02 02:40:18 +00:00
|
|
|
|
binaryTarball = forAllSystems (system: binaryTarball nixpkgsFor.${system}.native.nix nixpkgsFor.${system}.native);
|
|
|
|
|
|
2021-10-30 22:22:35 +00:00
|
|
|
|
# docker image with Nix inside
|
2022-03-02 02:40:18 +00:00
|
|
|
|
dockerImage = lib.genAttrs linux64BitSystems (system: self.packages.${system}.dockerImage);
|
2021-10-30 22:22:35 +00:00
|
|
|
|
|
2023-02-13 17:37:35 +00:00
|
|
|
|
# API docs for Nix's unstable internal C++ interfaces.
|
2024-03-09 04:09:11 +00:00
|
|
|
|
internal-api-docs = let
|
|
|
|
|
nixpkgs = nixpkgsFor.x86_64-linux.native;
|
|
|
|
|
inherit (nixpkgs) pkgs;
|
|
|
|
|
|
2024-03-09 08:22:06 +00:00
|
|
|
|
nix = pkgs.callPackage ./package.nix {
|
2024-03-09 04:09:11 +00:00
|
|
|
|
inherit versionSuffix fileset officialRelease buildUnreleasedNotes;
|
2024-03-26 17:32:25 +00:00
|
|
|
|
inherit (pkgs) build-release-notes;
|
2024-03-09 04:09:11 +00:00
|
|
|
|
internalApiDocs = true;
|
2024-03-09 08:22:06 +00:00
|
|
|
|
boehmgc = pkgs.boehmgc-nix;
|
|
|
|
|
busybox-sandbox-shell = pkgs.busybox-sandbox-shell;
|
2023-02-13 17:37:35 +00:00
|
|
|
|
};
|
2024-03-09 04:09:11 +00:00
|
|
|
|
in
|
|
|
|
|
nix.overrideAttrs (prev: {
|
|
|
|
|
# This Hydra job is just for the internal API docs.
|
|
|
|
|
# We don't need the build artifacts here.
|
|
|
|
|
dontBuild = true;
|
|
|
|
|
doCheck = false;
|
|
|
|
|
doInstallCheck = false;
|
|
|
|
|
});
|
2023-02-13 17:37:35 +00:00
|
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
|
# System tests.
|
2024-03-05 20:11:59 +00:00
|
|
|
|
tests = import ./tests/nixos { inherit lib nixpkgs nixpkgsFor; } // {
|
2022-02-23 14:58:09 +00:00
|
|
|
|
|
2024-03-05 20:11:59 +00:00
|
|
|
|
# Make sure that nix-env still produces the exact same result
|
|
|
|
|
# on a particular version of Nixpkgs.
|
|
|
|
|
evalNixpkgs =
|
|
|
|
|
with nixpkgsFor.x86_64-linux.native;
|
|
|
|
|
runCommand "eval-nixos" { buildInputs = [ nix ]; }
|
|
|
|
|
''
|
|
|
|
|
type -p nix-env
|
|
|
|
|
# Note: we're filtering out nixos-install-tools because https://github.com/NixOS/nixpkgs/pull/153594#issuecomment-1020530593.
|
|
|
|
|
time nix-env --store dummy:// -f ${nixpkgs-regression} -qaP --drv-path | sort | grep -v nixos-install-tools > packages
|
2024-03-08 12:56:43 +00:00
|
|
|
|
[[ $(sha1sum < packages | cut -c1-40) = 402242fca90874112b34718b8199d844e8b03d12 ]]
|
2024-03-05 20:11:59 +00:00
|
|
|
|
mkdir $out
|
|
|
|
|
'';
|
2022-01-24 23:02:48 +00:00
|
|
|
|
|
2024-03-05 20:11:59 +00:00
|
|
|
|
nixpkgsLibTests =
|
|
|
|
|
forAllSystems (system:
|
|
|
|
|
import (nixpkgs + "/lib/tests/release.nix")
|
|
|
|
|
{ pkgs = nixpkgsFor.${system}.native;
|
|
|
|
|
nixVersions = [ self.packages.${system}.nix ];
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
};
|
2021-10-15 10:36:29 +00:00
|
|
|
|
};
|
|
|
|
|
|
2024-03-19 06:03:48 +00:00
|
|
|
|
checks = forAllSystems (system: let
|
|
|
|
|
rl-next-check = name: dir:
|
|
|
|
|
let pkgs = nixpkgsFor.${system}.native;
|
|
|
|
|
in pkgs.buildPackages.runCommand "test-${name}-release-notes" { } ''
|
|
|
|
|
LANG=C.UTF-8 ${lib.getExe pkgs.build-release-notes} ${dir} >$out
|
|
|
|
|
'';
|
|
|
|
|
in {
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
# FIXME(Qyriad): remove this when the migration to Meson has been completed.
|
|
|
|
|
mesonBuild = self.hydraJobs.mesonBuild.${system};
|
|
|
|
|
mesonBuildClang = self.hydraJobs.mesonBuildClang.${system};
|
2021-10-15 10:36:29 +00:00
|
|
|
|
binaryTarball = self.hydraJobs.binaryTarball.${system};
|
|
|
|
|
perlBindings = self.hydraJobs.perlBindings.${system};
|
2023-01-17 23:17:59 +00:00
|
|
|
|
nixpkgsLibTests = self.hydraJobs.tests.nixpkgsLibTests.${system};
|
2024-03-19 06:03:48 +00:00
|
|
|
|
rl-next = rl-next-check "rl-next" ./doc/manual/rl-next;
|
|
|
|
|
rl-next-dev = rl-next-check "rl-next-dev" ./doc/manual/rl-next-dev;
|
2022-03-02 02:40:18 +00:00
|
|
|
|
} // (lib.optionalAttrs (builtins.elem system linux64BitSystems)) {
|
2021-11-24 08:19:29 +00:00
|
|
|
|
dockerImage = self.hydraJobs.dockerImage.${system};
|
2021-12-21 21:42:47 +00:00
|
|
|
|
});
|
2019-10-04 08:45:33 +00:00
|
|
|
|
|
2022-02-11 14:05:07 +00:00
|
|
|
|
packages = forAllSystems (system: rec {
|
2022-03-02 02:40:18 +00:00
|
|
|
|
inherit (nixpkgsFor.${system}.native) nix;
|
2022-02-11 14:05:07 +00:00
|
|
|
|
default = nix;
|
2022-03-02 02:40:18 +00:00
|
|
|
|
} // (lib.optionalAttrs (builtins.elem system linux64BitSystems) {
|
|
|
|
|
nix-static = nixpkgsFor.${system}.static.nix;
|
2022-01-26 13:31:23 +00:00
|
|
|
|
dockerImage =
|
|
|
|
|
let
|
2022-03-02 02:40:18 +00:00
|
|
|
|
pkgs = nixpkgsFor.${system}.native;
|
2022-01-26 13:31:23 +00:00
|
|
|
|
image = import ./docker.nix { inherit pkgs; tag = version; };
|
|
|
|
|
in
|
|
|
|
|
pkgs.runCommand
|
|
|
|
|
"docker-image-tarball-${version}"
|
|
|
|
|
{ meta.description = "Docker image with Nix for ${system}"; }
|
|
|
|
|
''
|
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
|
image=$out/image.tar.gz
|
|
|
|
|
ln -s ${image} $image
|
|
|
|
|
echo "file binary-dist $image" >> $out/nix-support/hydra-build-products
|
|
|
|
|
'';
|
2022-03-02 02:40:18 +00:00
|
|
|
|
} // builtins.listToAttrs (map
|
|
|
|
|
(crossSystem: {
|
|
|
|
|
name = "nix-${crossSystem}";
|
|
|
|
|
value = nixpkgsFor.${system}.cross.${crossSystem}.nix;
|
|
|
|
|
})
|
|
|
|
|
crossSystems)
|
|
|
|
|
// builtins.listToAttrs (map
|
|
|
|
|
(stdenvName: {
|
|
|
|
|
name = "nix-${stdenvName}";
|
|
|
|
|
value = nixpkgsFor.${system}.stdenvs."${stdenvName}Packages".nix;
|
|
|
|
|
})
|
|
|
|
|
stdenvs)));
|
|
|
|
|
|
|
|
|
|
devShells = let
|
|
|
|
|
makeShell = pkgs: stdenv:
|
2023-09-25 17:46:55 +00:00
|
|
|
|
let
|
2024-03-09 07:44:49 +00:00
|
|
|
|
nix = pkgs.callPackage ./package.nix {
|
|
|
|
|
inherit stdenv versionSuffix fileset;
|
|
|
|
|
boehmgc = pkgs.boehmgc-nix;
|
|
|
|
|
busybox-sandbox-shell = pkgs.busybox-sandbox-shell or pkgs.default-busybox-sandbox;
|
2023-12-18 20:59:58 +00:00
|
|
|
|
forDevShell = true;
|
2024-03-09 07:44:49 +00:00
|
|
|
|
};
|
2023-09-25 17:46:55 +00:00
|
|
|
|
in
|
2024-03-26 17:23:55 +00:00
|
|
|
|
(nix.override {
|
|
|
|
|
buildUnreleasedNotes = true;
|
|
|
|
|
officialRelease = false;
|
|
|
|
|
}).overrideAttrs (prev: {
|
2024-03-18 02:54:58 +00:00
|
|
|
|
# Required for clang-tidy checks
|
|
|
|
|
buildInputs = prev.buildInputs ++ lib.optionals (stdenv.cc.isClang) [ pkgs.llvmPackages.llvm pkgs.llvmPackages.clang-unwrapped.dev ];
|
2024-03-09 07:44:49 +00:00
|
|
|
|
nativeBuildInputs = prev.nativeBuildInputs
|
|
|
|
|
++ lib.optional (stdenv.cc.isClang && !stdenv.buildPlatform.isDarwin) pkgs.buildPackages.bear
|
2024-03-18 02:54:58 +00:00
|
|
|
|
# Required for clang-tidy checks
|
|
|
|
|
++ lib.optionals (stdenv.cc.isClang) [ pkgs.buildPackages.cmake pkgs.buildPackages.ninja pkgs.buildPackages.llvmPackages.llvm.dev ]
|
2024-03-09 07:44:49 +00:00
|
|
|
|
++ lib.optional
|
|
|
|
|
(stdenv.cc.isClang && stdenv.hostPlatform == stdenv.buildPlatform)
|
2024-03-18 02:54:58 +00:00
|
|
|
|
# for some reason that seems accidental and was changed in
|
|
|
|
|
# NixOS 24.05-pre, clang-tools is pinned to LLVM 14 when
|
|
|
|
|
# default LLVM is newer.
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
(pkgs.buildPackages.clang-tools.override { inherit (pkgs.buildPackages) llvmPackages; })
|
|
|
|
|
++ [
|
|
|
|
|
# FIXME(Qyriad): remove once the migration to Meson is complete.
|
|
|
|
|
pkgs.buildPackages.meson
|
|
|
|
|
pkgs.buildPackages.ninja
|
2024-03-19 06:03:48 +00:00
|
|
|
|
|
|
|
|
|
pkgs.buildPackages.clangbuildanalyzer
|
build: optionally build and install with meson
This commit adds several meson.build, which successfully build and
install Lix executables, libraries, and headers. Meson does not yet
build docs, Perl bindings, or run tests, which will be added in
following commits. As such, this commit does not remove the existing
build system, or make it the default, and also as such, this commit has
several FIXMEs and TODOs as notes for what should be done before the
existing autoconf + make buildsystem can be removed and Meson made the
default. This commit does not modify any source files.
A Meson-enabled build is also added as a Hydra job, and to
`nix flake check`.
Change-Id: I667c8685b13b7bab91e281053f807a11616ae3d4
2024-03-21 19:41:23 +00:00
|
|
|
|
];
|
2019-10-04 08:45:33 +00:00
|
|
|
|
|
2024-03-09 07:44:49 +00:00
|
|
|
|
src = null;
|
2019-10-04 08:45:33 +00:00
|
|
|
|
|
2024-03-09 07:44:49 +00:00
|
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
|
strictDeps = false;
|
2019-10-04 08:45:33 +00:00
|
|
|
|
|
2024-03-09 07:44:49 +00:00
|
|
|
|
shellHook = ''
|
2022-02-11 14:05:07 +00:00
|
|
|
|
PATH=$prefix/bin:$PATH
|
|
|
|
|
unset PYTHONPATH
|
|
|
|
|
export MANPATH=$out/share/man:$MANPATH
|
2021-12-22 12:21:45 +00:00
|
|
|
|
|
2022-02-11 14:05:07 +00:00
|
|
|
|
# Make bash completion work.
|
|
|
|
|
XDG_DATA_DIRS+=:$out/share
|
|
|
|
|
'';
|
2024-03-21 14:22:38 +00:00
|
|
|
|
} // lib.optionalAttrs (stdenv.buildPlatform.isLinux && pkgs.glibcLocales != null) {
|
2024-03-17 16:05:18 +00:00
|
|
|
|
# Required to make non-NixOS Linux not complain about missing locale files during configure in a dev shell
|
|
|
|
|
LOCALE_ARCHIVE = "${lib.getLib pkgs.glibcLocales}/lib/locale/locale-archive";
|
2024-03-09 07:44:49 +00:00
|
|
|
|
});
|
2022-03-02 02:40:18 +00:00
|
|
|
|
in
|
|
|
|
|
forAllSystems (system:
|
|
|
|
|
let
|
|
|
|
|
makeShells = prefix: pkgs:
|
|
|
|
|
lib.mapAttrs'
|
|
|
|
|
(k: v: lib.nameValuePair "${prefix}-${k}" v)
|
|
|
|
|
(forAllStdenvs (stdenvName: makeShell pkgs pkgs.${stdenvName}));
|
|
|
|
|
in
|
|
|
|
|
(makeShells "native" nixpkgsFor.${system}.native) //
|
|
|
|
|
(makeShells "static" nixpkgsFor.${system}.static) //
|
|
|
|
|
(forAllCrossSystems (crossSystem: let pkgs = nixpkgsFor.${system}.cross.${crossSystem}; in makeShell pkgs pkgs.stdenv)) //
|
|
|
|
|
{
|
|
|
|
|
default = self.devShells.${system}.native-stdenvPackages;
|
|
|
|
|
}
|
|
|
|
|
);
|
2019-04-08 15:28:05 +00:00
|
|
|
|
};
|
|
|
|
|
}
|