13 lines
231 B
Nix
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"; } )
|
|
)
|
|
)
|