Remove flake-utils from root flake.nix

This commit is contained in:
Luc Perkins 2023-07-13 17:26:57 -07:00
parent 7e121d224d
commit ba5f6a2fbd
No known key found for this signature in database
GPG key ID: CED8419FB058467A
3 changed files with 60 additions and 90 deletions

View file

@ -11,7 +11,7 @@
outputs = { self, nixpkgs, easy-purescript-nix }:
let
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; # "aarch64-linux" not supported
forEachSupportedSystem = f: nixpkgs.lib.genAttrs supportedSystems (system: f {
pkgs = import nixpkgs { inherit system; };
});