2019-04-08 15:28:05 +00:00
|
|
|
{
|
|
|
|
description = "The purely functional package manager";
|
|
|
|
|
2024-01-04 00:38:22 +00:00
|
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05-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; };
|
2023-11-14 12:30:51 +00:00
|
|
|
inputs.libgit2 = { url = "github:libgit2/libgit2"; flake = false; };
|
2019-04-08 15:28:05 +00:00
|
|
|
|
2023-12-13 21:22:35 +00:00
|
|
|
outputs = { self, nixpkgs, nixpkgs-regression, libgit2, ... }:
|
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;
|
2019-05-29 15:25:41 +00:00
|
|
|
|
2023-12-02 17:25:47 +00:00
|
|
|
# Experimental fileset library: https://github.com/NixOS/nixpkgs/pull/222981
|
|
|
|
# Not an "idiomatic" flake input because:
|
|
|
|
# - Propagation to dependent locks: https://github.com/NixOS/nix/issues/7730
|
|
|
|
# - Subflake would download redundant and huge parent flake
|
|
|
|
# - No git tree hash support: https://github.com/NixOS/nix/issues/6044
|
|
|
|
inherit (import (builtins.fetchTarball { url = "https://github.com/NixOS/nix/archive/1bdcd7fc8a6a40b2e805bad759b36e64e911036b.tar.gz"; sha256 = "sha256:14ljlpdsp4x7h1fkhbmc4bd3vsqnx8zdql4h3037wh09ad6a0893"; }))
|
|
|
|
fileset;
|
|
|
|
|
2022-12-06 17:00:10 +00:00
|
|
|
officialRelease = false;
|
|
|
|
|
2023-11-24 14:48:41 +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-08-31 02:57:59 +00:00
|
|
|
|
|
|
|
crossSystems = [
|
2023-09-02 18:36:25 +00:00
|
|
|
"armv6l-unknown-linux-gnueabihf"
|
|
|
|
"armv7l-unknown-linux-gnueabihf"
|
|
|
|
"x86_64-unknown-freebsd13"
|
|
|
|
"x86_64-unknown-netbsd"
|
2023-08-31 02:57:59 +00:00
|
|
|
];
|
2021-02-06 00:07:48 +00:00
|
|
|
|
2023-12-11 17:26:42 +00:00
|
|
|
# Nix doesn't yet build on this platform, so we put it in a
|
|
|
|
# separate list. We just use this for `devShells` and
|
|
|
|
# `nixpkgsFor`, which this depends on.
|
|
|
|
shellCrossSystems = crossSystems ++ [
|
|
|
|
"x86_64-w64-mingw32"
|
2023-08-31 02:57:59 +00:00
|
|
|
];
|
2021-02-06 00:07:48 +00:00
|
|
|
|
2023-11-30 22:48:44 +00:00
|
|
|
stdenvs = [
|
|
|
|
"ccacheStdenv"
|
|
|
|
"clangStdenv"
|
|
|
|
"gccStdenv"
|
|
|
|
"libcxxStdenv"
|
|
|
|
"stdenv"
|
|
|
|
];
|
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-08-31 02:57:59 +00:00
|
|
|
localSystem = {
|
|
|
|
inherit system;
|
|
|
|
};
|
|
|
|
crossSystem = if crossSystem == null then null else {
|
2023-09-02 18:36:25 +00:00
|
|
|
config = crossSystem;
|
|
|
|
} // lib.optionalAttrs (crossSystem == "x86_64-unknown-freebsd13") {
|
2023-08-31 02:57:59 +00:00
|
|
|
useLLVM = true;
|
|
|
|
};
|
2022-03-02 02:40:18 +00:00
|
|
|
overlays = [
|
|
|
|
(overlayFor (p: p.${stdenv}))
|
|
|
|
];
|
|
|
|
};
|
|
|
|
stdenvs = forAllStdenvs (make-pkgs null);
|
|
|
|
native = stdenvs.stdenvPackages;
|
|
|
|
in {
|
|
|
|
inherit stdenvs native;
|
|
|
|
static = native.pkgsStatic;
|
2023-12-11 17:26:42 +00:00
|
|
|
cross = lib.genAttrs shellCrossSystems (crossSystem: make-pkgs crossSystem "stdenv");
|
2022-03-02 02:40:18 +00:00
|
|
|
});
|
2019-10-04 08:45:33 +00:00
|
|
|
|
2023-12-07 01:28:11 +00:00
|
|
|
installScriptFor = tarballs:
|
2023-12-03 23:29:15 +00:00
|
|
|
nixpkgsFor.x86_64-linux.native.callPackage ./scripts/installer.nix {
|
2023-12-11 20:26:12 +00:00
|
|
|
inherit tarballs;
|
2023-12-03 23:29:15 +00:00
|
|
|
};
|
2021-02-15 10:20:54 +00:00
|
|
|
|
2023-12-02 17:25:47 +00:00
|
|
|
testNixVersions = pkgs: client: daemon:
|
2023-12-03 23:12:05 +00: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 15:57:31 +00:00
|
|
|
};
|
2021-03-16 12:43:08 +00:00
|
|
|
|
2023-12-03 23:16:07 +00:00
|
|
|
binaryTarball = nix: pkgs: pkgs.callPackage ./scripts/binary-tarball.nix {
|
2023-11-30 22:48:44 +00:00
|
|
|
inherit nix;
|
|
|
|
};
|
2021-06-26 05:12:03 +00:00
|
|
|
|
2021-07-08 15:01:51 +00:00
|
|
|
overlayFor = getStdenv: final: prev:
|
2023-11-30 22:48:44 +00:00
|
|
|
let
|
|
|
|
stdenv = getStdenv final;
|
|
|
|
in
|
2022-01-25 00:28:44 +00:00
|
|
|
{
|
|
|
|
nixStable = prev.nix;
|
2020-11-10 09:43:33 +00:00
|
|
|
|
2023-12-03 23:12:05 +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
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
libgit2-nix = final.libgit2.overrideAttrs (attrs: {
|
|
|
|
src = libgit2;
|
|
|
|
version = libgit2.lastModifiedDate;
|
|
|
|
cmakeFlags = attrs.cmakeFlags or []
|
|
|
|
++ [ "-DUSE_SSH=exec" ];
|
|
|
|
});
|
|
|
|
|
2023-12-03 23:17:47 +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
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2023-12-11 13:44:58 +00:00
|
|
|
changelog-d-nix = final.buildPackages.callPackage ./misc/changelog-d.nix { };
|
2020-07-22 11:51:11 +00:00
|
|
|
|
2023-02-21 15:15:24 +00:00
|
|
|
nix =
|
2023-11-30 22:48:44 +00: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-03 23:17:47 +00:00
|
|
|
boehmgc = final.boehmgc-nix;
|
2023-12-03 23:12:05 +00:00
|
|
|
libgit2 = final.libgit2-nix;
|
|
|
|
busybox-sandbox-shell = final.busybox-sandbox-shell or final.default-busybox-sandbox-shell;
|
2023-12-11 13:44:58 +00:00
|
|
|
changelog-d = final.changelog-d-nix;
|
2023-12-03 23:47:54 +00: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 15:00:55 +00:00
|
|
|
};
|
2023-12-03 23:47:54 +00:00
|
|
|
|
|
|
|
nix-perl-bindings = final.callPackage ./perl {
|
|
|
|
inherit fileset stdenv;
|
|
|
|
};
|
|
|
|
|
2023-02-06 15:36:57 +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
|
|
|
|
2023-12-09 20:22:20 +00:00
|
|
|
shellInputs = forAllSystems (system: self.devShells.${system}.default.inputDerivation);
|
|
|
|
|
2022-03-02 02:40:18 +00:00
|
|
|
buildStatic = lib.genAttrs linux64BitSystems (system: self.packages.${system}.nix-static);
|
2019-10-04 08:45:33 +00:00
|
|
|
|
2022-03-02 02:40:18 +00:00
|
|
|
buildCross = forAllCrossSystems (crossSystem:
|
|
|
|
lib.genAttrs ["x86_64-linux"] (system: self.packages.${system}."nix-${crossSystem}"));
|
2021-02-06 00:07:48 +00:00
|
|
|
|
2022-03-02 02:40:18 +00:00
|
|
|
buildNoGc = forAllSystems (system: self.packages.${system}.nix.overrideAttrs (a: { configureFlags = (a.configureFlags or []) ++ ["--enable-gc=no"];}));
|
2022-12-13 09:44:07 +00:00
|
|
|
|
2023-02-20 19:27:50 +00:00
|
|
|
buildNoTests = forAllSystems (system:
|
2024-01-02 17:50:48 +00:00
|
|
|
self.packages.${system}.nix.override {
|
|
|
|
doCheck = false;
|
|
|
|
doInstallCheck = false;
|
|
|
|
installUnitTests = false;
|
|
|
|
}
|
2023-02-20 19:27:50 +00:00
|
|
|
);
|
|
|
|
|
2023-09-02 19:56:37 +00: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 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
|
|
|
|
# with the closure of 'nix' package, and the second half of
|
|
|
|
# the installation script.
|
2022-03-02 02:40:18 +00: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 08:45:33 +00: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-11-30 22:53:07 +00:00
|
|
|
installerScript = installScriptFor [
|
2023-12-07 01:14:14 +00:00
|
|
|
# Native
|
2023-12-07 01:28:11 +00: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 01:14:14 +00:00
|
|
|
# Cross
|
2023-09-02 18:36:25 +00:00
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv6l-unknown-linux-gnueabihf"
|
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv7l-unknown-linux-gnueabihf"
|
2023-11-30 22:53:07 +00:00
|
|
|
];
|
|
|
|
installerScriptForGHA = installScriptFor [
|
2023-12-07 01:14:14 +00:00
|
|
|
# Native
|
2023-12-07 01:28:11 +00:00
|
|
|
self.hydraJobs.binaryTarball."x86_64-linux"
|
|
|
|
self.hydraJobs.binaryTarball."x86_64-darwin"
|
2023-12-07 01:14:14 +00:00
|
|
|
# Cross
|
2023-09-02 18:36:25 +00:00
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv6l-unknown-linux-gnueabihf"
|
|
|
|
self.hydraJobs.binaryTarballCross."x86_64-linux"."armv7l-unknown-linux-gnueabihf"
|
2023-11-30 22:53:07 +00:00
|
|
|
];
|
2019-10-04 08:45:33 +00:00
|
|
|
|
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
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
# Line coverage analysis.
|
2023-12-03 23:12:05 +00:00
|
|
|
coverage = nixpkgsFor.x86_64-linux.native.nix.override {
|
|
|
|
pname = "nix-coverage";
|
|
|
|
withCoverageChecks = true;
|
|
|
|
};
|
2019-10-04 08:45:33 +00:00
|
|
|
|
2023-02-13 17:37:35 +00:00
|
|
|
# API docs for Nix's unstable internal C++ interfaces.
|
2023-12-03 19:10:09 +00:00
|
|
|
internal-api-docs = nixpkgsFor.x86_64-linux.native.callPackage ./package.nix {
|
2023-12-03 21:48:50 +00:00
|
|
|
inherit fileset;
|
2023-12-03 19:10:09 +00:00
|
|
|
doBuild = false;
|
|
|
|
enableInternalAPIDocs = true;
|
|
|
|
};
|
2023-02-13 17:37:35 +00:00
|
|
|
|
2019-10-04 08:45:33 +00:00
|
|
|
# System tests.
|
2023-10-06 14:53:01 +00:00
|
|
|
tests = import ./tests/nixos { inherit lib nixpkgs nixpkgsFor; } // {
|
2022-02-23 14:58:09 +00:00
|
|
|
|
2023-10-06 14:53:01 +00:00
|
|
|
# Make sure that nix-env still produces the exact same result
|
|
|
|
# on a particular version of Nixpkgs.
|
|
|
|
evalNixpkgs =
|
2023-12-01 11:25:22 +00:00
|
|
|
let
|
2023-12-02 17:25:47 +00:00
|
|
|
inherit (nixpkgsFor.x86_64-linux.native) runCommand nix;
|
2023-12-01 11:25:22 +00:00
|
|
|
in
|
2023-10-06 14:53:01 +00: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.
|
|
|
|
time nix-env --store dummy:// -f ${nixpkgs-regression} -qaP --drv-path | sort | grep -v nixos-install-tools > packages
|
|
|
|
[[ $(sha1sum < packages | cut -c1-40) = ff451c521e61e4fe72bdbe2d0ca5d1809affa733 ]]
|
|
|
|
mkdir $out
|
|
|
|
'';
|
2022-01-24 23:02:48 +00:00
|
|
|
|
2023-10-06 14:53:01 +00:00
|
|
|
nixpkgsLibTests =
|
|
|
|
forAllSystems (system:
|
|
|
|
import (nixpkgs + "/lib/tests/release.nix")
|
|
|
|
{ pkgs = nixpkgsFor.${system}.native;
|
|
|
|
nixVersions = [ self.packages.${system}.nix ];
|
|
|
|
}
|
|
|
|
);
|
|
|
|
};
|
2023-01-17 23:17:59 +00:00
|
|
|
|
2022-01-24 23:02:48 +00:00
|
|
|
metrics.nixpkgs = import "${nixpkgs-regression}/pkgs/top-level/metrics.nix" {
|
2022-03-02 02:40:18 +00:00
|
|
|
pkgs = nixpkgsFor.x86_64-linux.native;
|
2022-01-24 23:02:48 +00:00
|
|
|
nixpkgs = nixpkgs-regression;
|
|
|
|
};
|
2019-10-04 08:45:33 +00:00
|
|
|
|
2021-10-15 10:36:29 +00:00
|
|
|
installTests = forAllSystems (system:
|
2022-03-02 02:40:18 +00:00
|
|
|
let pkgs = nixpkgsFor.${system}.native; in
|
2021-03-16 12:43:08 +00:00
|
|
|
pkgs.runCommand "install-tests" {
|
|
|
|
againstSelf = testNixVersions pkgs pkgs.nix pkgs.pkgs.nix;
|
2021-10-06 11:17:39 +00: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 12:43:08 +00: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 10:36:29 +00:00
|
|
|
} "touch $out");
|
|
|
|
|
2022-09-14 13:40:43 +00:00
|
|
|
installerTests = import ./tests/installer {
|
|
|
|
binaryTarballs = self.hydraJobs.binaryTarball;
|
|
|
|
inherit nixpkgsFor;
|
|
|
|
};
|
|
|
|
|
2021-10-15 10:36:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
checks = forAllSystems (system: {
|
|
|
|
binaryTarball = self.hydraJobs.binaryTarball.${system};
|
|
|
|
perlBindings = self.hydraJobs.perlBindings.${system};
|
|
|
|
installTests = self.hydraJobs.installTests.${system};
|
2023-01-17 23:17:59 +00:00
|
|
|
nixpkgsLibTests = self.hydraJobs.tests.nixpkgsLibTests.${system};
|
2023-12-09 18:55:47 +00:00
|
|
|
rl-next =
|
|
|
|
let pkgs = nixpkgsFor.${system}.native;
|
|
|
|
in pkgs.buildPackages.runCommand "test-rl-next-release-notes" { } ''
|
2023-12-11 13:44:58 +00:00
|
|
|
LANG=C.UTF-8 ${pkgs.changelog-d-nix}/bin/changelog-d ${./doc/manual/rl-next} >$out
|
2023-12-09 18:55:47 +00:00
|
|
|
'';
|
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
|
2023-12-18 20:59:58 +00:00
|
|
|
makeShell = pkgs: stdenv: (pkgs.nix.override { inherit stdenv; forDevShell = true; }).overrideAttrs (attrs: {
|
2023-12-01 11:25:22 +00: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
|
|
|
|
'';
|
2023-12-15 11:41:38 +00:00
|
|
|
nativeBuildInputs = attrs.nativeBuildInputs or []
|
|
|
|
++ lib.optional stdenv.cc.isClang pkgs.buildPackages.bear
|
|
|
|
++ lib.optional (stdenv.cc.isClang && stdenv.hostPlatform == stdenv.buildPlatform) pkgs.buildPackages.clang-tools;
|
2023-12-01 11:25:22 +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) //
|
2023-12-11 17:26:42 +00:00
|
|
|
(lib.genAttrs shellCrossSystems (crossSystem: let pkgs = nixpkgsFor.${system}.cross.${crossSystem}; in makeShell pkgs pkgs.stdenv)) //
|
2022-03-02 02:40:18 +00:00
|
|
|
{
|
|
|
|
default = self.devShells.${system}.native-stdenvPackages;
|
|
|
|
}
|
|
|
|
);
|
2019-04-08 15:28:05 +00:00
|
|
|
};
|
|
|
|
}
|