tvl-depot/scratch/groceries/shell.nix

9 lines
156 B
Nix
Raw Normal View History

let
pkgs = import <unstable> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
]))
];
}