diff --git a/jobsets.nix b/jobsets.nix index 34ec18d..7838c8f 100644 --- a/jobsets.nix +++ b/jobsets.nix @@ -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 ); diff --git a/ticker.nix b/ticker.nix index 40da9d1..8cb4c23 100644 --- a/ticker.nix +++ b/ticker.nix @@ -2,9 +2,7 @@ }: with pkgs; -with import { - inherit pkgs; -}; +with import {}; { ticker-update = lib.hydraJob ticker-update; ticker-serve = lib.hydraJob ticker-serve;