Skip to content

Instantly share code, notes, and snippets.

@Lipranu
Lipranu / shell.nix
Created January 19, 2021 17:58
nix shell with ghc 9.0.1
let pkgs = import (fetchTarball path) {};
path = https://github.com/NixOS/nixpkgs/archive/master.tar.gz;
in with pkgs;
mkShell {
buildInputs = [
haskell.compiler.ghc901
];
}