diff --git a/.hydra/jobsets.nix b/.hydra/jobsets.nix new file mode 100644 index 0000000..8470702 --- /dev/null +++ b/.hydra/jobsets.nix @@ -0,0 +1,13 @@ +# +# jobset example file. This file can be referenced as Nix expression +# in a jobset configuration along with inputs for nixpkgs and the +# repository containing this file. +# +{ ... }: +let + # is set to the value designated by the nixpkgs input of the + # jobset configuration. + pkgs = (import {}); +in { + hello = pkgs.hello; +} diff --git a/.hydra/spec.json b/.hydra/spec.json new file mode 100644 index 0000000..775b137 --- /dev/null +++ b/.hydra/spec.json @@ -0,0 +1,22 @@ +{ + "nixpkgs": { + "enabled": 1, + "hidden": false, + "description": "Nixpkgs", + "nixexprinput": "nixpkgs", + "nixexprpath": "pkgs/top-level/release.nix", + "checkinterval": 300, + "schedulingshares": 100, + "enableemail": false, + "enable_dynamic_run_command": false, + "emailoverride": "", + "keepnr": 3, + "inputs": { + "nixpkgs": { + "type": "git", + "value": "git://github.com/NixOS/nixpkgs.git master", + "emailresponsible": false + } + } + } +}