1
Fork 0
satellite/devshells/purescript.nix
2023-12-04 06:25:00 +01:00

6 lines
166 B
Nix

# shell containing the tools i most commonly use for purescript work!
{ pkgs, ... }:
pkgs.mkShell {
packages = with pkgs; [ purescript spago typescript nodejs ];
}