nix-eval-jobs 2.12.0 -> 2.13.0 https://github.com/nix-community/nix-eval-jobs/releases attrpath: nix-eval-jobs Checking auto update branch... No auto update branch exists Old version 2.12.0" not present in master derivation file with contents: { lib , boost , cmake , fetchFromGitHub , meson , ninja , nix , nlohmann_json , pkg-config , stdenv }: stdenv.mkDerivation rec { pname = "nix-eval-jobs"; version = "2.12.1"; src = fetchFromGitHub { owner = "nix-community"; repo = pname; rev = "v${version}"; hash = "sha256-8nFseSTAIGJdB4P/K/cXAehvdrSLcTTBZLQNs/ZC+I8="; }; buildInputs = [ boost nix nlohmann_json ]; nativeBuildInputs = [ meson ninja pkg-config # nlohmann_json can be only discovered via cmake files cmake ]; 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; }; }