2023-04-14 17:12:35 +02:00
|
|
|
# Shell containing the tools I most commonly use for work
|
2023-04-19 22:31:43 +02:00
|
|
|
{ pkgs, upkgs, inputs }:
|
2023-04-14 17:12:35 +02:00
|
|
|
pkgs.mkShell {
|
2023-04-19 22:31:43 +02:00
|
|
|
# REASON: purescript 0.15.7 and it's associated spago
|
|
|
|
nativeBuildInputs = [ upkgs.purescript upkgs.spago pkgs.typescript pkgs.nodejs ];
|
2023-04-14 17:12:35 +02:00
|
|
|
}
|