Create a shell.nix

Manage the project's dependencies using Nix.
This commit is contained in:
William Carroll 2020-07-24 18:59:34 +01:00
parent 26271ec178
commit ec90748b82

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
]))
];
}