hydra-builds/default.nix
2022-01-23 13:09:09 +05:30

13 lines
194 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
)
)