Compare commits

...

2 Commits

Author SHA1 Message Date
891cd41e46
Add shell.nix file 2024-12-09 21:43:28 -05:00
afe6b6dd59
Add mtl package 2024-12-09 21:42:41 -05:00
2 changed files with 12 additions and 1 deletions

10
shell.nix Normal file
View File

@ -0,0 +1,10 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShell {
buildInputs = [
pkgs.haskell.compiler.ghc90
pkgs.cabal-install
pkgs.llvm_18
];
}

View File

@ -82,7 +82,8 @@ executable windows12
text >= 1.2.5 && < 1.3, text >= 1.2.5 && < 1.3,
parser-combinators >= 1.3.0 && < 1.4, parser-combinators >= 1.3.0 && < 1.4,
prettyprinter >= 1.5.1 && < 1.6, prettyprinter >= 1.5.1 && < 1.6,
string-conversions >= 0.4.0 && < 0.5 string-conversions >= 0.4.0 && < 0.5,
mtl >= 2.2.2 && < 2.3,
-- Directories containing source files. -- Directories containing source files.
hs-source-dirs: src hs-source-dirs: src