Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
68 lines
1.3 KiB
Nix
68 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
boost,
|
|
fetchFromGitHub,
|
|
meson,
|
|
ninja,
|
|
curl,
|
|
nlohmann_json,
|
|
pkg-config,
|
|
stdenv,
|
|
nixComponents,
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "nix-eval-jobs";
|
|
version = "2.31.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nix-community";
|
|
repo = "nix-eval-jobs";
|
|
tag = "v${version}";
|
|
hash = "sha256-VrHPtHxVIboqgnw+tlCQepgtBOhBvU5hxbMHsPo8LAc=";
|
|
};
|
|
|
|
buildInputs = [
|
|
boost
|
|
curl
|
|
nlohmann_json
|
|
nixComponents.nix-store
|
|
nixComponents.nix-fetchers
|
|
nixComponents.nix-expr
|
|
nixComponents.nix-flake
|
|
nixComponents.nix-main
|
|
nixComponents.nix-cmd
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
# Since this package is intimately tied to a specific Nix release, we
|
|
# propagate the Nix used for building it to make it easier for users
|
|
# downstream to reference it.
|
|
passthru = {
|
|
inherit nixComponents;
|
|
# For nix-fast-build
|
|
nix = nixComponents.nix-cli;
|
|
};
|
|
|
|
meta = {
|
|
description = "Hydra's builtin hydra-eval-jobs as a standalone";
|
|
homepage = "https://github.com/nix-community/nix-eval-jobs";
|
|
license = lib.licenses.gpl3;
|
|
maintainers = with lib.maintainers; [
|
|
adisbladis
|
|
mic92
|
|
];
|
|
platforms = lib.platforms.unix;
|
|
mainProgram = "nix-eval-jobs";
|
|
};
|
|
}
|