mirror of
https://github.com/ilyakooo0/reflex.git
synced 2024-11-20 19:09:55 +03:00
Allow overriding systems in release.nix
This commit is contained in:
parent
062646b079
commit
d72a7bdd27
@ -1,12 +1,12 @@
|
||||
{ reflex-platform-fun ? import ./dep/reflex-platform
|
||||
, supportedSystems ? ["x86_64-linux" "x86_64-darwin"]
|
||||
}:
|
||||
|
||||
let
|
||||
native-reflex-platform = reflex-platform-fun {};
|
||||
inherit (native-reflex-platform.nixpkgs) lib;
|
||||
systems = ["x86_64-linux" "x86_64-darwin"];
|
||||
|
||||
perPlatform = lib.genAttrs systems (system: let
|
||||
perPlatform = lib.genAttrs supportedSystems (system: let
|
||||
reflex-platform = reflex-platform-fun { inherit system; };
|
||||
compilers = [
|
||||
"ghc"
|
||||
|
Loading…
Reference in New Issue
Block a user