From c35a55babd9aa6e1ad8797f3d54deec2f78ff78a Mon Sep 17 00:00:00 2001 From: Vika Date: Wed, 28 Sep 2022 23:13:02 +0300 Subject: Switch to TypeScript This neccesitates installing TypeScript to build Kittybox, but thankfully Nix actually takes care of that. Build Kittybox with Nix and you won't have problems. Also now I can safely do stuff. --- shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'shell.nix') diff --git a/shell.nix b/shell.nix index a2333fc..75fd790 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ { mkShell, rustc, cargo, rust-analyzer, clippy, rustfmt , cargo-watch, cargo-edit, cargo-outdated, cargo-crev , xh, systemfd, tokio-console -, pkg-config, protobuf +, pkg-config, protobuf, typescript }: mkShell { name = "rust-dev-shell"; @@ -9,7 +9,7 @@ mkShell { nativeBuildInputs = [ rustc cargo rust-analyzer clippy rustfmt cargo-watch cargo-edit cargo-outdated cargo-crev - xh systemfd #tokio-console + xh systemfd typescript #tokio-console # required for tokio-console's console-subscriber #pkg-config protobuf ]; -- cgit 1.4.1