From 890a734cb958b626fa6f87b96ec18c3faa2222db Mon Sep 17 00:00:00 2001 From: Alexey Kuleshevich Date: Thu, 31 Oct 2024 10:34:46 -0600 Subject: [PATCH] Add a workaround the fact plutus-tx-plugin is "special" --- flake.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/flake.nix b/flake.nix index dcc4f692cf1..c2e666c437c 100644 --- a/flake.nix +++ b/flake.nix @@ -80,6 +80,9 @@ ''; shell = { + # Due to plutus-tx-plugin being a bit special, we need to augment the default package selection. + packages = ps: builtins.attrValues (nixpkgs.haskell-nix.haskellLib.selectLocalPackages ps) ++ [ps.plutus-tx-plugin]; + # force LANG to be UTF-8, otherwise GHC might choke on UTF encoded data. shellHook = '' export LANG=en_US.UTF-8