Add shell.nix file

This commit is contained in:
Ethan Girouard 2024-12-09 21:43:28 -05:00
parent afe6b6dd59
commit 891cd41e46
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

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
];
}