2021-10-11 16:52:03 +00:00
|
|
|
{ lib
|
|
|
|
, boost
|
|
|
|
, cmake
|
|
|
|
, fetchFromGitHub
|
|
|
|
, meson
|
|
|
|
, ninja
|
2024-06-24 18:47:55 +00:00
|
|
|
, curl
|
2021-12-06 16:07:01 +00:00
|
|
|
, nix
|
2021-10-11 16:52:03 +00:00
|
|
|
, nlohmann_json
|
|
|
|
, pkg-config
|
|
|
|
, stdenv
|
|
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "nix-eval-jobs";
|
2024-06-24 18:47:55 +00:00
|
|
|
version = "2.22.1";
|
2021-10-11 16:52:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "nix-community";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2024-06-24 18:47:55 +00:00
|
|
|
hash = "sha256-zvi2YfvlOLtui2JFhPs2qybpnJR3/2luMfp8t/eMh54=";
|
2021-10-11 16:52:03 +00:00
|
|
|
};
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
2021-12-06 16:07:01 +00:00
|
|
|
nix
|
2024-06-24 18:47:55 +00:00
|
|
|
curl
|
2021-10-11 16:52:03 +00:00
|
|
|
nlohmann_json
|
|
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
|
|
meson
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
# nlohmann_json can be only discovered via cmake files
|
|
|
|
cmake
|
|
|
|
];
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
# 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 nix; };
|
|
|
|
|
2021-10-11 16:52:03 +00:00
|
|
|
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;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "nix-eval-jobs";
|
2021-10-11 16:52:03 +00:00
|
|
|
};
|
|
|
|
}
|