This commit is contained in:
illustris 2022-01-23 12:38:56 +05:30
commit 97b9b3fe63
2 changed files with 15 additions and 0 deletions

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# hydra-builds
Some hydra jobset definitions

12
default.nix Normal file
View File

@ -0,0 +1,12 @@
{ ... }@args:
let
pkgs = (import <nixpkgs> {});
in
#
with builtins; listToAttrs (
map ( x: { name = x.pname; value = x;} ) (
import "${pkgs.path}/maintainers/scripts/build.nix" ( intersectAttrs args { maintainer = "illustris"; } )
)
)