hydra-builds/default.nix
2022-01-23 12:54:25 +05:30

13 lines
220 B
Nix

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