Compare commits

...

No commits in common. "cc757f0adb08371f867d8b086eb7e42f4867f46a" and "1363c326f7b8164f4f022dd27bbb02f12983ceb5" have entirely different histories.

3 changed files with 41 additions and 0 deletions

View File

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

12
by-maintainer.nix Normal file
View File

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

28
default.nix Normal file
View File

@ -0,0 +1,28 @@
{ ... }@args:
let
pkgs = (import <nixpkgs> {});
in
with pkgs; {
illustris = import ./by-maintainer.nix args;
homelab = {
inherit (nixosTests) hedgedoc jitsi-meet searx;
#inherit (nixosTests) jibri zfs;
};
misc = {
hadoop = {
inherit (nixosTests) hadoop;
# https://github.com/NixOS/nixpkgs/pull/154004
#inherit (nixosTests) hadoop_3_2 hadoop2;
};
sssd = { inherit (nixosTests) sssd sssd-ldap; };
prometheus = {
inherit (nixosTests) prometheus;
#inherit (nixosTests) prometheus-exporters;
};
inherit (nixosTests) kafka keepalived keycloak nginx php postgresql signal-desktop spark vault;
};
#disabled = {
# mysql = { inherit (nixosTests) mysql mysql-autobackup mysql-backup mysql-replication; };
#};
}