2023-08-14 13:49:55 +02:00
|
|
|
# shell containing the tools i most commonly use for purescript work!
|
2023-11-11 06:55:14 +01:00
|
|
|
{ pkgs, ... }:
|
2023-08-14 13:49:55 +02:00
|
|
|
pkgs.mkShell {
|
2023-12-04 06:25:00 +01:00
|
|
|
packages = with pkgs; [ purescript spago typescript nodejs ];
|
2023-08-14 13:49:55 +02:00
|
|
|
}
|