utoy/shell.nix
2023-03-01 03:41:39 +01:00

16 lines
224 B
Nix

{ pkgs ? import ./nix/pkgs.nix {} }:
let
tools = with pkgs; [
# nix tools
niv
nix-tree
# haskell tools
stack
haskell-language-server
];
in
pkgs.mkShellNoCC {
nativeBuildInputs = tools;
}