From e78cbf66ac14745ef6840034da9394c7231244bc Mon Sep 17 00:00:00 2001 From: Andreas Herrmann Date: Mon, 25 Sep 2023 13:44:34 +0200 Subject: [PATCH] Add stack to the Nix shell Otherwise rules_haskell will download a binary release which would not work on NixOS. ``` DEBUG: .../external/rules_haskell/haskell/cabal.bzl:2384:10: Stack not found. DEBUG: .../external/rules_haskell/haskell/cabal.bzl:2385:10: Downloading Stack 2.7.5 ... ``` --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index b2f711f..71838a4 100644 --- a/shell.nix +++ b/shell.nix @@ -16,6 +16,7 @@ mkShell { git openjdk11 python3 + stack # convenience dependencies less ];