Skip to content

Commit

Permalink
use newer version of poetry available in nixpkgs instead of the one s…
Browse files Browse the repository at this point in the history
…upplied by the poetry2nix overlay
  • Loading branch information
goodlyrottenapple committed Aug 14, 2023
1 parent 4b860de commit 9869043
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
pkgs = import nixpkgs {
inherit system;
overlays = [
(final: prev: { llvm-backend-release = false; })
(final: prev: { llvm-backend-release = false; poetry-nixpkgs = prev.poetry; })
k-framework.overlay
blockchain-k-plugin.overlay
poetry2nix.overlay
Expand All @@ -191,7 +191,7 @@
packages.default = kevm;
devShell = pkgs.mkShell {
buildInputs = buildInputs pkgs k-framework.packages.${system}.k
++ [ pkgs.poetry pkgs.foundry-bin ];
++ [ pkgs.poetry-nixpkgs pkgs.foundry-bin ];

shellHook = ''
export NIX_LIBS="${nixLibs pkgs}"
Expand Down

0 comments on commit 9869043

Please sign in to comment.