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;
|
updateDeps = prev.writeShellScriptBin "updateDeps" updateDepsScript;
|
||||||
activateDevenv = prev.writeShellScriptBin "activateDevenv" activateDevenv;
|
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 (
|
projectConfig = forSystems (
|
||||||
system: let
|
system: let
|
||||||
inherit (nixCats) utils;
|
inherit (nixCats) utils;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue