hydra-builds/default.nix
2022-01-23 12:46:26 +05:30

13 lines
231 B
Nix

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