Created
July 23, 2023 15:02
-
-
Save TomMD/0d950753d13a33864e56d26217fec8d7 to your computer and use it in GitHub Desktop.
Basic shell.nix useful for some Haskell dev work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
unstable = import <nixos-unstable> {}; | |
new = import <nixos-21.11> {}; | |
in new.mkShell { | |
buildInputs = [ | |
new.ghc | |
new.haskellPackages.haskell-language-server | |
unstable.neovim | |
new.zlib.dev | |
# unstable.terraform | |
# new.google-cloud-sdk | |
# new.dig | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment