mirror of
https://github.com/dwinkler1/np.git
synced 2026-02-19 22:40:57 -05:00
restrict supported systems
This commit is contained in:
parent
790c9ed1c8
commit
f0b60b014a
1 changed files with 6 additions and 1 deletions
|
|
@ -280,7 +280,12 @@
|
|||
updateDeps = prev.writeShellScriptBin "updateDeps" updateDepsScript;
|
||||
activateDevenv = prev.writeShellScriptBin "activateDevenv" activateDevenv;
|
||||
};
|
||||
forSystems = nixpkgs.lib.genAttrs nixpkgs.lib.platforms.all;
|
||||
supportedSystems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
"aarch64-darwin"
|
||||
];
|
||||
forSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||
projectConfig = forSystems (
|
||||
system: let
|
||||
inherit (nixCats) utils;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue