2019-04-08 18:28:05 +03:00
|
|
|
{
|
|
|
|
description = "The purely functional package manager";
|
|
|
|
|
2024-02-28 03:31:19 +02:00
|
|
|
# TODO switch to nixos-23.11-small
|
|
|
|
# https://nixpk.gs/pr-tracker.html?pr=291954
|
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
|
2022-05-16 21:46:44 +03:00
|
|
|
inputs.nixpkgs-regression.url = "github:NixOS/nixpkgs/215d4d0fd80ca5163643b03a33fde804a29cc1e2";
|
2023-03-06 21:51:58 +02:00
|
|
|
inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; };
|
2023-11-14 14:30:51 +02:00
|
|
|
inputs.libgit2 = { url = "github:libgit2/libgit2"; flake = false; };
|
2019-04-08 18:28:05 +03:00
|
|
|
|
2024-04-18 22:59:39 +03:00
|
|
|
# dev tooling
|
|
|
|
inputs.flake-parts.url = "github:hercules-ci/flake-parts";
|
|
|
|
inputs.pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix";
|
|
|
|
# work around https://github.com/NixOS/nix/issues/7730
|
|
|
|
inputs.flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
|
|
|
|
inputs.pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
inputs.pre-commit-hooks.inputs.nixpkgs-stable.follows = "nixpkgs";
|
|
|
|
# work around 7730 and https://github.com/NixOS/nix/issues/7807
|
|
|
|
inputs.pre-commit-hooks.inputs.flake-compat.follows = "";
|
|
|
|
inputs.pre-commit-hooks.inputs.gitignore.follows = "";
|
|
|
|
|
|
|
|
outputs = inputs@{ self, nixpkgs, nixpkgs-regression, libgit2, ... }:
|
|
|
|
|
2019-04-08 18:28:05 +03:00
|
|
|
|
2019-10-04 11:45:33 +03:00
|
|
|
let
|
2022-03-02 04:40:18 +02:00
|
|
|
inherit (nixpkgs) lib;
|
2024-02-27 14:45:18 +02:00
|
|
|
inherit (lib) fileset;
|
2023-12-02 19:25:47 +02:00
|
|
|
|
2022-12-06 19:00:10 +02:00
|
|
|
officialRelease = false;
|
|
|
|
|
2022-03-02 04:40:18 +02:00
|
|
|
version = lib.fileContents ./.version + versionSuffix;
|
2020-04-01 01:20:12 +03:00
|
|
|
versionSuffix =
|
|
|
|
if officialRelease
|
|
|
|
then ""
|
2020-10-21 22:31:19 +03:00
|
|
|
else "pre${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}_${self.shortRev or "dirty"}";
|
2020-03-13 19:28:01 +02:00
|
|
|
|
2023-08-23 21:28:24 +03:00
|
|
|
linux32BitSystems = [ "i686-linux" ];
|
2020-10-28 07:13:18 +02:00
|
|
|
linux64BitSystems = [ "x86_64-linux" "aarch64-linux" ];
|
2023-08-23 21:28:24 +03:00
|
|
|
linuxSystems = linux32BitSystems ++ linux64BitSystems;
|
|
|
|
darwinSystems = [ "x86_64-darwin" "aarch64-darwin" ];
|
|
|
|
systems = linuxSystems ++ darwinSystems;
|
2023-08-31 05:57:59 +03:00
|
|
|
|
|
|
|
crossSystems = [
|
2023-09-02 21:36:25 +03:00
|
|
|
"armv6l-unknown-linux-gnueabihf"
|
|
|
|
"armv7l-unknown-linux-gnueabihf"
|
2024-04-18 14:10:52 +03:00
|
|
|
"riscv64-unknown-linux-gnu"
|
2023-09-02 21:36:25 +03:00
|
|
|
"x86_64-unknown-netbsd"
|
2023-12-11 19:26:42 +02:00
|
|
|
"x86_64-w64-mingw32"
|
2023-08-31 05:57:59 +03:00
|
|
|
];
|
2021-02-06 02:07:48 +02:00
|
|
|
|
2023-12-01 00:48:44 +02:00
|
|
|
stdenvs = [
|
|
|
|
"ccacheStdenv"
|
|
|
|
"clangStdenv"
|
|
|
|
"gccStdenv"
|
|
|
|
"libcxxStdenv"
|
|
|
|
"stdenv"
|
|
|
|
];
|
2021-07-08 18:01:51 +03:00
|
|
|
|
2022-03-02 04:40:18 +02:00
|
|
|
forAllSystems = lib.genAttrs systems;
|
|
|
|
|
|
|
|
forAllCrossSystems = lib.genAttrs crossSystems;
|
|
|
|
|
|
|
|
forAllStdenvs = f:
|
|
|
|
lib.listToAttrs
|
2021-07-08 18:01:51 +03:00
|
|
|
(map
|
2022-03-02 04:40:18 +02:00
|
|
|
(stdenvName: {
|
|
|
|
name = "${stdenvName}Packages";
|
|
|
|
value = f stdenvName;
|
|
|
|
})
|
|
|
|
stdenvs);
|
2021-07-08 18:01:51 +03:00
|
|
|
|
2024-04-18 22:59:39 +03:00
|
|
|
|
|
|
|
# We don't apply flake-parts to the whole flake so that non-development attributes
|
|
|
|
# load without fetching any development inputs.
|
|
|
|
devFlake = inputs.flake-parts.lib.mkFlake { inherit inputs; } {
|
|
|
|
imports = [ ./maintainers/flake-module.nix ];
|
|
|
|
systems = lib.subtractLists crossSystems systems;
|
|
|
|
perSystem = { system, ... }: {
|
|
|
|
_module.args.pkgs = nixpkgsFor.${system}.native;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2019-10-04 11:45:33 +03:00
|
|
|
# Memoize nixpkgs for different platforms for efficiency.
|
2022-03-02 04:40:18 +02:00
|
|
|
nixpkgsFor = forAllSystems
|
|
|
|
(system: let
|
|
|
|
make-pkgs = crossSystem: stdenv: import nixpkgs {
|
2023-08-31 05:57:59 +03:00
|
|
|
localSystem = {
|
|
|
|
inherit system;
|
|
|
|
};
|
|
|
|
crossSystem = if crossSystem == null then null else {
|
2023-09-02 21:36:25 +03:00
|
|
|
config = crossSystem;
|
|
|
|
} // lib.optionalAttrs (crossSystem == "x86_64-unknown-freebsd13") {
|
2023-08-31 05:57:59 +03:00
|
|
|
useLLVM = true;
|
|
|
|
};
|
2022-03-02 04:40:18 +02:00
|
|
|
overlays = [
|
|
|
|
(overlayFor (p: p.${stdenv}))
|
|
|
|
];
|
|
|
|
};
|
|
|
|
stdenvs = forAllStdenvs (make-pkgs null);
|
|
|
|
native = stdenvs.stdenvPackages;
|
|
|
|
in {
|
|
|
|
inherit stdenvs native;
|
|
|
|
static = native.pkgsStatic;
|
2024-01-13 03:39:46 +02:00
|
|
|
cross = forAllCrossSystems (crossSystem: make-pkgs crossSystem "stdenv");
|
2022-03-02 04:40:18 +02:00
|
|
|
});
|
2019-10-04 11:45:33 +03:00
|
|
|
|
2023-12-07 03:28:11 +02:00
|
|
|
installScriptFor = tarballs:
|
2023-12-04 01:29:15 +02:00
|
|
|
nixpkgsFor.x86_64-linux.native.callPackage ./scripts/installer.nix {
|
2023-12-11 22:26:12 +02:00
|
|
|
inherit tarballs;
|
2023-12-04 01:29:15 +02:00
|
|
|
};
|
2021-02-15 12:20:54 +02:00
|
|
|
|
2023-12-02 19:25:47 +02:00
|
|
|
testNixVersions = pkgs: client: daemon:
|
2023-12-04 01:12:05 +02:00
|
|
|
pkgs.callPackage ./package.nix {
|
|
|
|
pname =
|
|
|
|
"nix-tests"
|
|
|
|
+ lib.optionalString
|
|
|
|
(lib.versionAtLeast daemon.version "2.4pre20211005" &&
|
|
|
|
lib.versionAtLeast client.version "2.4pre20211005")
|
|
|
|
"-${client.version}-against-${daemon.version}";
|
|
|
|
|
|
|
|
inherit fileset;
|
|
|
|
|
|
|
|
test-client = client;
|
|
|
|
test-daemon = daemon;
|
|
|
|
|
|
|
|
doBuild = false;
|
2023-10-06 18:57:31 +03:00
|
|
|
};
|
2021-03-16 14:43:08 +02:00
|
|
|
|
2023-12-04 01:16:07 +02:00
|
|
|
binaryTarball = nix: pkgs: pkgs.callPackage ./scripts/binary-tarball.nix {
|
2023-12-01 00:48:44 +02:00
|
|
|
inherit nix;
|
|
|
|
};
|
2021-06-26 08:12:03 +03:00
|
|
|
|
2021-07-08 18:01:51 +03:00
|
|
|
overlayFor = getStdenv: final: prev:
|
2023-12-01 00:48:44 +02:00
|
|
|
let
|
|
|
|
stdenv = getStdenv final;
|
|
|
|
in
|
2022-01-25 02:28:44 +02:00
|
|
|
{
|
|
|
|
nixStable = prev.nix;
|
2020-11-10 11:43:33 +02:00
|
|
|
|
2023-12-04 01:12:05 +02: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
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
libgit2-nix = final.libgit2.overrideAttrs (attrs: {
|
|
|
|
src = libgit2;
|
|
|
|
version = libgit2.lastModifiedDate;
|
|
|
|
cmakeFlags = attrs.cmakeFlags or []
|
|
|
|
++ [ "-DUSE_SSH=exec" ];
|
|
|
|
});
|
|
|
|
|
2023-12-04 01:17:47 +02:00
|
|
|
boehmgc-nix = (final.boehmgc.override {
|
|
|
|
enableLargeConfig = true;
|
|
|
|
}).overrideAttrs(o: {
|
|
|
|
patches = (o.patches or []) ++ [
|
2024-01-17 20:11:04 +02:00
|
|
|
./dep-patches/boehmgc-coroutine-sp-fallback.diff
|
2023-12-04 01:17:47 +02:00
|
|
|
|
|
|
|
# https://github.com/ivmai/bdwgc/pull/586
|
2024-01-17 20:11:04 +02:00
|
|
|
./dep-patches/boehmgc-traceable_allocator-public.diff
|
2023-12-04 01:17:47 +02:00
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2023-12-11 15:44:58 +02:00
|
|
|
changelog-d-nix = final.buildPackages.callPackage ./misc/changelog-d.nix { };
|
2020-07-22 14:51:11 +03:00
|
|
|
|
2023-02-21 17:15:24 +02:00
|
|
|
nix =
|
2023-12-01 00:48:44 +02:00
|
|
|
let
|
|
|
|
officialRelease = false;
|
|
|
|
versionSuffix =
|
|
|
|
if officialRelease
|
|
|
|
then ""
|
|
|
|
else "pre${builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101")}_${self.shortRev or "dirty"}";
|
|
|
|
|
|
|
|
in final.callPackage ./package.nix {
|
|
|
|
inherit
|
|
|
|
fileset
|
|
|
|
stdenv
|
|
|
|
versionSuffix
|
|
|
|
;
|
|
|
|
officialRelease = false;
|
2023-12-04 01:17:47 +02:00
|
|
|
boehmgc = final.boehmgc-nix;
|
2023-12-04 01:12:05 +02:00
|
|
|
libgit2 = final.libgit2-nix;
|
|
|
|
busybox-sandbox-shell = final.busybox-sandbox-shell or final.default-busybox-sandbox-shell;
|
2023-12-04 01:47:54 +02:00
|
|
|
} // {
|
|
|
|
# this is a proper separate downstream package, but put
|
|
|
|
# here also for back compat reasons.
|
|
|
|
perl-bindings = final.nix-perl-bindings;
|
2023-10-13 18:00:55 +03:00
|
|
|
};
|
2023-12-04 01:47:54 +02:00
|
|
|
|
2024-01-17 20:08:03 +02:00
|
|
|
nix-perl-bindings = final.callPackage ./perl {
|
|
|
|
inherit fileset stdenv;
|
2023-02-06 17:36:57 +02:00
|
|
|
};
|
|
|
|
|
2024-04-18 22:59:39 +03:00
|
|
|
# https://github.com/NixOS/nixpkgs/pull/214409
|
|
|
|
pre-commit =
|
|
|
|
if prev.stdenv.hostPlatform.system == "i686-linux"
|
|
|
|
then (prev.pre-commit.override (o: { dotnet-sdk = ""; })).overridePythonAttrs (o: { doCheck = false; })
|
|
|
|
else prev.pre-commit;
|
|
|
|
|
2024-01-17 20:08:03 +02:00
|
|
|
};
|
|
|
|
|
2021-07-08 18:01:51 +03:00
|
|
|
in {
|
|
|
|
# A Nixpkgs overlay that overrides the 'nix' and
|
|
|
|
# 'nix.perl-bindings' packages.
|
2022-02-11 16:05:07 +02:00
|
|
|
overlays.default = overlayFor (p: p.stdenv);
|
2021-07-08 18:01:51 +03:00
|
|
|
|
2020-03-13 19:31:16 +02:00
|
|
|
hydraJobs = {
|
|
|
|
|
2019-10-04 11:45:33 +03:00
|
|
|
# Binary package for various platforms.
|
2022-03-02 04:40:18 +02:00
|
|
|
build = forAllSystems (system: self.packages.${system}.nix);
|
2020-07-30 22:59:57 +03:00
|
|
|
|
2023-12-09 22:22:20 +02:00
|
|
|
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
|
|
|
|
|
2022-03-02 04:40:18 +02:00
|
|
|
buildStatic = lib.genAttrs linux64BitSystems (system: self.packages.${system}.nix-static);
|
2019-10-04 11:45:33 +03:00
|
|
|
|
2022-03-02 04:40:18 +02:00
|
|
|
buildCross = forAllCrossSystems (crossSystem:
|
|
|
|
lib.genAttrs ["x86_64-linux"] (system: self.packages.${system}."nix-${crossSystem}"));
|
2021-02-06 02:07:48 +02:00
|
|
|
|
2024-01-10 00:31:40 +02:00
|
|
|
buildNoGc = forAllSystems (system:
|
|
|
|
self.packages.${system}.nix.override { enableGC = false; }
|
|
|
|
);
|
2022-12-13 11:44:07 +02:00
|
|
|
|
2023-02-20 21:27:50 +02:00
|
|
|
buildNoTests = forAllSystems (system:
|
2024-01-02 19:50:48 +02:00
|
|
|
self.packages.${system}.nix.override {
|
|
|
|
doCheck = false;
|
|
|
|
doInstallCheck = false;
|
|
|
|
installUnitTests = false;
|
|
|
|
}
|
2023-02-20 21:27:50 +02:00
|
|
|
);
|
|
|
|
|
2023-09-02 22:56:37 +03:00
|
|
|
# Toggles some settings for better coverage. Windows needs these
|
|
|
|
# library combinations, and Debian build Nix with GNU readline too.
|
|
|
|
buildReadlineNoMarkdown = forAllSystems (system:
|
|
|
|
self.packages.${system}.nix.override {
|
|
|
|
enableMarkdown = false;
|
|
|
|
readlineFlavor = "readline";
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2019-10-04 11:45:33 +03:00
|
|
|
# Perl bindings for various platforms.
|
2022-03-02 04:40:18 +02:00
|
|
|
perlBindings = forAllSystems (system: nixpkgsFor.${system}.native.nix.perl-bindings);
|
2019-10-04 11:45:33 +03:00
|
|
|
|
|
|
|
# Binary tarball for various platforms, containing a Nix store
|
|
|
|
# with the closure of 'nix' package, and the second half of
|
|
|
|
# the installation script.
|
2022-03-02 04:40:18 +02:00
|
|
|
binaryTarball = forAllSystems (system: binaryTarball nixpkgsFor.${system}.native.nix nixpkgsFor.${system}.native);
|
|
|
|
|
|
|
|
binaryTarballCross = lib.genAttrs ["x86_64-linux"] (system:
|
|
|
|
forAllCrossSystems (crossSystem:
|
|
|
|
binaryTarball
|
|
|
|
self.packages.${system}."nix-${crossSystem}"
|
|
|
|
nixpkgsFor.${system}.cross.${crossSystem}));
|
2019-10-04 11:45:33 +03:00
|
|
|
|
|
|
|
# The first half of the installation script. This is uploaded
|
|
|
|
# to https://nixos.org/nix/install. It downloads the binary
|
|
|
|
# tarball for the user's system and calls the second half of the
|
|
|
|
# installation script.
|
2023-12-01 00:53:07 +02:00
|
|
|
installerScript = installScriptFor [
|
2023-12-07 03:14:14 +02:00
|
|
|
# Native
|
2023-12-07 03:28:11 +02:00
|
|
|
self.hydraJobs.binaryTarball."x86_64-linux"
|
|
|
|
self.hydraJobs.binaryTarball."i686-linux"
|
|
|
|
self.hydraJobs.binaryTarball."aarch64-linux"
|
|
|
|
self.hydraJobs.binaryTarball."x86_64-darwin"
|
|
|
|
self.hydraJobs.binaryTarball."aarch64-darwin"
|
2023-12-07 03:14:14 +02:00
|
|
|
# Cross
|
2023-09-02 21:36:25 +03:00
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv6l-unknown-linux-gnueabihf"
|
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv7l-unknown-linux-gnueabihf"
|
2024-04-18 14:10:52 +03:00
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."riscv64-unknown-linux-gnu"
|
2023-12-01 00:53:07 +02:00
|
|
|
];
|
|
|
|
installerScriptForGHA = installScriptFor [
|
2023-12-07 03:14:14 +02:00
|
|
|
# Native
|
2023-12-07 03:28:11 +02:00
|
|
|
self.hydraJobs.binaryTarball."x86_64-linux"
|
|
|
|
self.hydraJobs.binaryTarball."x86_64-darwin"
|
2023-12-07 03:14:14 +02:00
|
|
|
# Cross
|
2023-09-02 21:36:25 +03:00
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv6l-unknown-linux-gnueabihf"
|
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv7l-unknown-linux-gnueabihf"
|
2024-04-18 14:10:52 +03:00
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."riscv64-unknown-linux-gnu"
|
2023-12-01 00:53:07 +02:00
|
|
|
];
|
2019-10-04 11:45:33 +03:00
|
|
|
|
2021-10-31 01:22:35 +03:00
|
|
|
# docker image with Nix inside
|
2022-03-02 04:40:18 +02:00
|
|
|
dockerImage = lib.genAttrs linux64BitSystems (system: self.packages.${system}.dockerImage);
|
2021-10-31 01:22:35 +03:00
|
|
|
|
2019-10-04 11:45:33 +03:00
|
|
|
# Line coverage analysis.
|
2023-12-04 01:12:05 +02:00
|
|
|
coverage = nixpkgsFor.x86_64-linux.native.nix.override {
|
|
|
|
pname = "nix-coverage";
|
|
|
|
withCoverageChecks = true;
|
|
|
|
};
|
2019-10-04 11:45:33 +03:00
|
|
|
|
2023-02-13 19:37:35 +02:00
|
|
|
# API docs for Nix's unstable internal C++ interfaces.
|
2023-12-03 21:10:09 +02:00
|
|
|
internal-api-docs = nixpkgsFor.x86_64-linux.native.callPackage ./package.nix {
|
2023-12-03 23:48:50 +02:00
|
|
|
inherit fileset;
|
2023-12-03 21:10:09 +02:00
|
|
|
doBuild = false;
|
|
|
|
enableInternalAPIDocs = true;
|
|
|
|
};
|
2023-02-13 19:37:35 +02:00
|
|
|
|
2023-12-15 01:26:45 +02:00
|
|
|
# API docs for Nix's C bindings.
|
|
|
|
external-api-docs = nixpkgsFor.x86_64-linux.native.callPackage ./package.nix {
|
|
|
|
inherit fileset;
|
|
|
|
doBuild = false;
|
|
|
|
enableExternalAPIDocs = true;
|
|
|
|
};
|
|
|
|
|
2019-10-04 11:45:33 +03:00
|
|
|
# System tests.
|
2023-10-06 17:53:01 +03:00
|
|
|
tests = import ./tests/nixos { inherit lib nixpkgs nixpkgsFor; } // {
|
2022-02-23 16:58:09 +02:00
|
|
|
|
2023-10-06 17:53:01 +03:00
|
|
|
# Make sure that nix-env still produces the exact same result
|
|
|
|
# on a particular version of Nixpkgs.
|
|
|
|
evalNixpkgs =
|
2023-12-01 13:25:22 +02:00
|
|
|
let
|
2023-12-02 19:25:47 +02:00
|
|
|
inherit (nixpkgsFor.x86_64-linux.native) runCommand nix;
|
2023-12-01 13:25:22 +02:00
|
|
|
in
|
2023-10-06 17:53:01 +03:00
|
|
|
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.
|
2024-03-08 09:48:53 +02:00
|
|
|
(
|
|
|
|
set -x
|
|
|
|
time nix-env --store dummy:// -f ${nixpkgs-regression} -qaP --drv-path | sort | grep -v nixos-install-tools > packages
|
2024-03-08 09:50:27 +02:00
|
|
|
[[ $(sha1sum < packages | cut -c1-40) = e01b031fc9785a572a38be6bc473957e3b6faad7 ]]
|
2024-03-08 09:48:53 +02:00
|
|
|
)
|
2023-10-06 17:53:01 +03:00
|
|
|
mkdir $out
|
|
|
|
'';
|
2022-01-25 01:02:48 +02:00
|
|
|
|
2023-10-06 17:53:01 +03:00
|
|
|
nixpkgsLibTests =
|
|
|
|
forAllSystems (system:
|
|
|
|
import (nixpkgs + "/lib/tests/release.nix")
|
|
|
|
{ pkgs = nixpkgsFor.${system}.native;
|
|
|
|
nixVersions = [ self.packages.${system}.nix ];
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2023-01-18 01:17:59 +02:00
|
|
|
|
2022-01-25 01:02:48 +02:00
|
|
|
metrics.nixpkgs = import "${nixpkgs-regression}/pkgs/top-level/metrics.nix" {
|
2022-03-02 04:40:18 +02:00
|
|
|
pkgs = nixpkgsFor.x86_64-linux.native;
|
2022-01-25 01:02:48 +02:00
|
|
|
nixpkgs = nixpkgs-regression;
|
|
|
|
};
|
2019-10-04 11:45:33 +03:00
|
|
|
|
2021-10-15 13:36:29 +03:00
|
|
|
installTests = forAllSystems (system:
|
2022-03-02 04:40:18 +02:00
|
|
|
let pkgs = nixpkgsFor.${system}.native; in
|
2021-03-16 14:43:08 +02:00
|
|
|
pkgs.runCommand "install-tests" {
|
|
|
|
againstSelf = testNixVersions pkgs pkgs.nix pkgs.pkgs.nix;
|
2021-10-06 14:17:39 +03:00
|
|
|
againstCurrentUnstable =
|
|
|
|
# FIXME: temporarily disable this on macOS because of #3605.
|
|
|
|
if system == "x86_64-linux"
|
|
|
|
then testNixVersions pkgs pkgs.nix pkgs.nixUnstable
|
|
|
|
else null;
|
2021-03-16 14:43:08 +02:00
|
|
|
# Disabled because the latest stable version doesn't handle
|
|
|
|
# `NIX_DAEMON_SOCKET_PATH` which is required for the tests to work
|
|
|
|
# againstLatestStable = testNixVersions pkgs pkgs.nix pkgs.nixStable;
|
2021-10-15 13:36:29 +03:00
|
|
|
} "touch $out");
|
|
|
|
|
2022-09-14 16:40:43 +03:00
|
|
|
installerTests = import ./tests/installer {
|
|
|
|
binaryTarballs = self.hydraJobs.binaryTarball;
|
|
|
|
inherit nixpkgsFor;
|
|
|
|
};
|
|
|
|
|
2021-10-15 13:36:29 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
checks = forAllSystems (system: {
|
|
|
|
binaryTarball = self.hydraJobs.binaryTarball.${system};
|
|
|
|
installTests = self.hydraJobs.installTests.${system};
|
2023-01-18 01:17:59 +02:00
|
|
|
nixpkgsLibTests = self.hydraJobs.tests.nixpkgsLibTests.${system};
|
2023-12-09 20:55:47 +02:00
|
|
|
rl-next =
|
|
|
|
let pkgs = nixpkgsFor.${system}.native;
|
|
|
|
in pkgs.buildPackages.runCommand "test-rl-next-release-notes" { } ''
|
2023-12-11 15:44:58 +02:00
|
|
|
LANG=C.UTF-8 ${pkgs.changelog-d-nix}/bin/changelog-d ${./doc/manual/rl-next} >$out
|
2023-12-09 20:55:47 +02:00
|
|
|
'';
|
2022-03-02 04:40:18 +02:00
|
|
|
} // (lib.optionalAttrs (builtins.elem system linux64BitSystems)) {
|
2021-11-24 10:19:29 +02:00
|
|
|
dockerImage = self.hydraJobs.dockerImage.${system};
|
2024-03-07 11:40:53 +02:00
|
|
|
} // (lib.optionalAttrs (!(builtins.elem system linux32BitSystems))) {
|
|
|
|
# Some perl dependencies are broken on i686-linux.
|
|
|
|
# Since the support is only best-effort there, disable the perl
|
|
|
|
# bindings
|
|
|
|
perlBindings = self.hydraJobs.perlBindings.${system};
|
2024-04-18 22:59:39 +03:00
|
|
|
} // devFlake.checks.${system} or {}
|
|
|
|
);
|
2019-10-04 11:45:33 +03:00
|
|
|
|
2022-02-11 16:05:07 +02:00
|
|
|
packages = forAllSystems (system: rec {
|
2024-01-29 18:10:42 +02:00
|
|
|
inherit (nixpkgsFor.${system}.native) nix changelog-d-nix;
|
2022-02-11 16:05:07 +02:00
|
|
|
default = nix;
|
2022-03-02 04:40:18 +02:00
|
|
|
} // (lib.optionalAttrs (builtins.elem system linux64BitSystems) {
|
|
|
|
nix-static = nixpkgsFor.${system}.static.nix;
|
2022-01-26 15:31:23 +02:00
|
|
|
dockerImage =
|
|
|
|
let
|
2022-03-02 04:40:18 +02:00
|
|
|
pkgs = nixpkgsFor.${system}.native;
|
2022-01-26 15:31:23 +02: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 04:40:18 +02: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
|
2024-04-18 22:59:39 +03:00
|
|
|
makeShell = pkgs: stdenv: (pkgs.nix.override { inherit stdenv; forDevShell = true; }).overrideAttrs (attrs:
|
|
|
|
let
|
|
|
|
modular = devFlake.getSystem stdenv.buildPlatform.system;
|
|
|
|
in {
|
2023-12-01 13:25:22 +02:00
|
|
|
installFlags = "sysconfdir=$(out)/etc";
|
|
|
|
shellHook = ''
|
|
|
|
PATH=$prefix/bin:$PATH
|
|
|
|
unset PYTHONPATH
|
|
|
|
export MANPATH=$out/share/man:$MANPATH
|
|
|
|
|
|
|
|
# Make bash completion work.
|
|
|
|
XDG_DATA_DIRS+=:$out/share
|
|
|
|
'';
|
2024-02-28 09:02:49 +02:00
|
|
|
|
2024-04-18 22:59:39 +03:00
|
|
|
env = {
|
|
|
|
# For `make format`, to work without installing pre-commit
|
|
|
|
_NIX_PRE_COMMIT_HOOKS_CONFIG =
|
|
|
|
"${(pkgs.formats.yaml { }).generate "pre-commit-config.yaml" modular.pre-commit.settings.rawConfig}";
|
|
|
|
};
|
|
|
|
|
2023-12-15 13:41:38 +02:00
|
|
|
nativeBuildInputs = attrs.nativeBuildInputs or []
|
2024-04-18 22:59:39 +03:00
|
|
|
++ [
|
|
|
|
modular.pre-commit.settings.package
|
|
|
|
(pkgs.writeScriptBin "pre-commit-hooks-install"
|
|
|
|
modular.pre-commit.settings.installationScript)
|
|
|
|
]
|
2024-02-27 14:45:18 +02:00
|
|
|
# TODO: Remove the darwin check once
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/291814 is available
|
2024-02-27 19:45:51 +02:00
|
|
|
++ lib.optional (stdenv.cc.isClang && !stdenv.buildPlatform.isDarwin) pkgs.buildPackages.bear
|
2023-12-15 13:41:38 +02:00
|
|
|
++ lib.optional (stdenv.cc.isClang && stdenv.hostPlatform == stdenv.buildPlatform) pkgs.buildPackages.clang-tools;
|
2023-12-01 13:25:22 +02:00
|
|
|
});
|
2022-03-02 04:40:18 +02: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) //
|
2024-02-27 20:24:31 +02:00
|
|
|
(lib.optionalAttrs (!nixpkgsFor.${system}.native.stdenv.isDarwin)
|
2024-01-13 03:39:46 +02:00
|
|
|
(makeShells "static" nixpkgsFor.${system}.static) //
|
|
|
|
(forAllCrossSystems (crossSystem: let pkgs = nixpkgsFor.${system}.cross.${crossSystem}; in makeShell pkgs pkgs.stdenv))) //
|
2022-03-02 04:40:18 +02:00
|
|
|
{
|
|
|
|
default = self.devShells.${system}.native-stdenvPackages;
|
|
|
|
}
|
|
|
|
);
|
2019-04-08 18:28:05 +03:00
|
|
|
};
|
|
|
|
}
|