2023-04-14 17:12:35 +02:00
|
|
|
# Shell containing the tools I most commonly use for work
|
|
|
|
{ pkgs, inputs }:
|
2023-04-17 10:53:41 +02:00
|
|
|
let unstable = inputs.nixpkgs-unstable.legacyPackages.${pkgs.system}; in
|
2023-04-14 17:12:35 +02:00
|
|
|
pkgs.mkShell {
|
2023-04-17 10:53:41 +02:00
|
|
|
nativeBuildInputs = with pkgs; [ unstable.purescript unstable.spago typescript nodejs ];
|
2023-04-14 17:12:35 +02:00
|
|
|
}
|