move things around
This commit is contained in:
parent
1008a75179
commit
387a3e55aa
12
by-maintainer.nix
Normal file
12
by-maintainer.nix
Normal 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
|
||||
)
|
||||
)
|
||||
13
default.nix
13
default.nix
@ -1,12 +1,5 @@
|
||||
{ ... }@args:
|
||||
|
||||
let
|
||||
pkgs = (import <nixpkgs> {});
|
||||
in
|
||||
|
||||
#
|
||||
with builtins; listToAttrs (
|
||||
map ( x: { name = x.pname; value = x;} ) (
|
||||
import "${pkgs.path}/maintainers/scripts/build.nix" args
|
||||
)
|
||||
)
|
||||
{
|
||||
illustris = import ./by-maintainer.nix args;
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user