ticker: fix scope issue

This commit is contained in:
Astro 2019-10-26 01:22:48 +02:00
parent fcc10c330f
commit 3243b46104
2 changed files with 9 additions and 3 deletions

View File

@ -93,6 +93,14 @@ let
frpball = "https://github.com/nek0/frpball.git master 1";
};
};
tracer = mkJobset {
description = "Haskell game";
nixexprpath = "tracer.nix";
gitUrls = {
tracer = "https://github.com/nek0/tracer.git master 1";
};
};
};
jobsetsJson = pkgs.writeText "jobsets.json" (builtins.toJSON jobsets );

View File

@ -2,9 +2,7 @@
}:
with pkgs;
with import <ticker> {
inherit pkgs;
};
with import <ticker> {};
{
ticker-update = lib.hydraJob ticker-update;
ticker-serve = lib.hydraJob ticker-serve;