13 stdenv.mkDerivation rec {
14 pname = "nix-eval-jobs";
16 src = fetchFromGitHub {
17 owner = "nix-community";
20 hash = "sha256-j/p2ftkP8MXYEK7Vx65jH/Knr2QkEcRSVoDnVOUDe6Q=";
32 # nlohmann_json can be only discovered via cmake files
36 # Since this package is intimately tied to a specific Nix release, we
37 # propagate the Nix used for building it to make it easier for users
38 # downstream to reference it.
39 passthru = { inherit nix; };
42 description = "Hydra's builtin hydra-eval-jobs as a standalone";
43 homepage = "https://github.com/nix-community/nix-eval-jobs";
44 license = lib.licenses.gpl3;
45 maintainers = with lib.maintainers; [ adisbladis mic92 ];
46 platforms = lib.platforms.unix;
47 mainProgram = "nix-eval-jobs";