diff options
author | Guillaume Boisseau | 2024-04-27 13:31:45 +0200 |
---|---|---|
committer | GitHub | 2024-04-27 13:31:45 +0200 |
commit | fead40d1fb6e9f7bed705e8d3048133cf59c3bb8 (patch) | |
tree | a35feb03710a3f20e53544ef93ac5ba1b37461fc | |
parent | 5da597289c1723aa59bf87ad5075675820c18f73 (diff) | |
parent | 281513027f3a4c5650109d725d1ac5ee7739edba (diff) |
Merge pull request #159 from zgrannan/add-flake-systems
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -14,7 +14,7 @@ # Remark: keep the list of outputs in sync with the list of inputs above # (see above remark) outputs = { self, charon, flake-utils, nixpkgs, hacl-nix, flake-compat }: - flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: + flake-utils.lib.eachDefaultSystem (system: let pkgs = import nixpkgs { inherit system; }; ocamlPackages = pkgs.ocamlPackages; |