add system map for convenience (#55)
This commit is contained in:
parent
74f7e43192
commit
3f197dc759
14
README.md
14
README.md
|
@ -12,6 +12,14 @@ flakes.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
### `system -> (<system> -> <system>)`
|
||||||
|
|
||||||
|
A map from system to system built from `allSystems`. It's mainly useful to
|
||||||
|
detect typos and auto-complete if you use
|
||||||
|
[rnix-lsp](https://github.com/nix-community/rnix-lsp).
|
||||||
|
|
||||||
|
Eg: instead of typing `"x86_64-linux"`, use `system.x86_64-linux`
|
||||||
|
|
||||||
### `allSystems -> [<system>]`
|
### `allSystems -> [<system>]`
|
||||||
|
|
||||||
A list of all systems defined in nixpkgs. For a smaller list see `defaultSystems`
|
A list of all systems defined in nixpkgs. For a smaller list see `defaultSystems`
|
||||||
|
@ -22,7 +30,7 @@ The list of systems supported by nixpkgs and built by hydra.
|
||||||
Useful if you want add additional platforms:
|
Useful if you want add additional platforms:
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
eachSystem (defaultSystems ++ ["armv7l-linux"]) (system: { hello = 42; })
|
eachSystem (defaultSystems ++ [system.armv7l-linux]) (system: { hello = 42; })
|
||||||
```
|
```
|
||||||
|
|
||||||
### `eachSystem -> [<system>] -> (<system> -> attrs)`
|
### `eachSystem -> [<system>] -> (<system> -> attrs)`
|
||||||
|
@ -34,7 +42,7 @@ then re-build the hierarchy.
|
||||||
Eg:
|
Eg:
|
||||||
|
|
||||||
```nix
|
```nix
|
||||||
eachSystem ["x86_64-linux"] (system: { hello = 42; })
|
eachSystem [ system.x86_64-linux ] (system: { hello = 42; })
|
||||||
# => { hello = { x86_64-linux = 42; }; }
|
# => { hello = { x86_64-linux = 42; }; }
|
||||||
eachSystem allSystems (system: { hello = 42; })
|
eachSystem allSystems (system: { hello = 42; })
|
||||||
# => {
|
# => {
|
||||||
|
@ -132,7 +140,7 @@ Input:
|
||||||
, # maps to the devShell output. Pass in a shell.nix file or function.
|
, # maps to the devShell output. Pass in a shell.nix file or function.
|
||||||
shell ? null
|
shell ? null
|
||||||
, # pass the list of supported systems
|
, # pass the list of supported systems
|
||||||
systems ? [ "x86_64-linux" ]
|
systems ? [ system.x86_64-linux ]
|
||||||
}: null
|
}: null
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,14 @@ let
|
||||||
"x86_64-genode"
|
"x86_64-genode"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# A map from system to system. It's useful to detect typos.
|
||||||
|
#
|
||||||
|
# Instead of typing `"x86_64-linux"`, type `flake-utils.lib.system.x86_64-linux`
|
||||||
|
# and get an error back if you used a dash instead of an underscore.
|
||||||
|
system =
|
||||||
|
builtins.listToAttrs
|
||||||
|
(map (system: { name = system; value = system; }) allSystems);
|
||||||
|
|
||||||
# eachSystem using defaultSystems
|
# eachSystem using defaultSystems
|
||||||
eachDefaultSystem = eachSystem defaultSystems;
|
eachDefaultSystem = eachSystem defaultSystems;
|
||||||
|
|
||||||
|
@ -183,6 +191,7 @@ let
|
||||||
flattenTree
|
flattenTree
|
||||||
mkApp
|
mkApp
|
||||||
simpleFlake
|
simpleFlake
|
||||||
|
system
|
||||||
;
|
;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in New Issue