From dbd106b91d95bcf359d80200401c64caf916492a Mon Sep 17 00:00:00 2001 From: ahuston-0 Date: Sat, 27 Jul 2024 12:35:10 -0400 Subject: [PATCH] remove attempt to parse flake inputs this is actually not possible rn apparently, tracked in NixOS/Hydra#1005 Signed-off-by: ahuston-0 --- hydra/jobsets.nix | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/hydra/jobsets.nix b/hydra/jobsets.nix index c92ee39..bc81853 100644 --- a/hydra/jobsets.nix +++ b/hydra/jobsets.nix @@ -1,10 +1,4 @@ -{ - pulls, - branches, - nixexpr, - nixpkgs, - ... -}: +{ pulls, branches, ... }: let # create the json spec for the jobset makeSpec = @@ -45,18 +39,9 @@ let enabled = 1; type = 1; hidden = false; - checkinterval = 300; # every 6 months + checkinterval = 300; # every 5 minutes enableemail = false; emailoverride = ""; - inputs = { - inherit - nixexpr - nixpkgs - pulls - branches - ; - # rev = pkgs.runCommand "rev" {} ''echo "${src.rev}" > $out''; - }; }; # Create a hydra job for a branch