summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/shell.nix b/shell.nix
index 7f16236..d1ef9ce 100644
--- a/shell.nix
+++ b/shell.nix
@@ -11,6 +11,8 @@ pkgs.stdenv.mkDerivation {
11 pkgs.gcc 11 pkgs.gcc
12 (pkgs.callPackage ./mars.nix {}) 12 (pkgs.callPackage ./mars.nix {})
13 pkgs.sqlite 13 pkgs.sqlite
14 pkgs.ghc 14 (pkgs.haskellPackages.ghcWithPackages (p:
15 with p; [ yesod
16 ]))
15 ]; 17 ];
16} 18}