tvl-depot/scratch/groceries/shell.nix
William Carroll 25a45fb222 Add export script for groceries
At this point, I may be taking this idea too far, but what the heck?
2020-06-27 14:06:59 +01:00

8 lines
156 B
Nix

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