Create a shell.nix
Manage the project's dependencies using Nix.
This commit is contained in:
parent
26271ec178
commit
ec90748b82
1 changed files with 8 additions and 0 deletions
8
shell.nix
Normal file
8
shell.nix
Normal file
|
@ -0,0 +1,8 @@
|
|||
let
|
||||
pkgs = import <nixpkgs> {};
|
||||
in pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
(haskellPackages.ghcWithPackages (hpkgs: with hpkgs; [
|
||||
]))
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue