6 lines
175 B
Nix
6 lines
175 B
Nix
# shell containing the tools i most commonly use for purescript work!
|
|
{ pkgs, ... }:
|
|
pkgs.mkShell {
|
|
nativebuildinputs = with pkgs; [ purescript spago typescript nodejs ];
|
|
}
|