1
Fork 0
keyswirl/layout-lens/shell.nix

15 lines
273 B
Nix
Raw Normal View History

2024-02-22 08:19:48 +01:00
{ pkgs ? import <nixpkgs>, ... }:
2023-02-02 00:05:33 +01:00
with pkgs;
mkShell {
2024-02-22 08:19:48 +01:00
buildInputs = [
nodePackages_latest.typescript
nodePackages_latest.ts-node
2023-02-02 00:05:33 +01:00
nodejs
2024-02-22 08:19:48 +01:00
purs
spago-unstable
purs-tidy-bin.purs-tidy-0_10_0
purs-backend-es
purescript-language-server
2023-02-02 00:05:33 +01:00
];
}