Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Merge pull request #78 from pontem-network/flake-env-fix
Browse files Browse the repository at this point in the history
fixed flake environment
  • Loading branch information
cab404 committed Aug 9, 2021
2 parents ee06054 + 2844b51 commit f3bcf71
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";

move-tools.url = "github:pontem-network/move-tools";
move-tools = {
url = "github:pontem-network/move-tools";
# Nested flake locks are not working correctly for the time being
# (Nix PR fixing this is here: https://github.com/NixOS/nix/pull/4641)
# Thus we rely on flake-compat.
flake = false;
};

};

Expand All @@ -20,6 +26,8 @@
rustTargets = fenixArch.targets;
llvmPackagesR = pkgs.llvmPackages_12;

dove = (import move-tools).defaultPackage."${system}";

rustToolchain = fenixArch.stable;
rustToolchainWasm = rustTargets.wasm32-unknown-unknown.latest;

Expand Down

0 comments on commit f3bcf71

Please sign in to comment.