aboutsummaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..54c2e27
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,14 @@
+{ pkgs ? import <nixpkgs> { }, ... }:
+
+let
+ packages = with pkgs; [
+ nodejs-18_x
+ yarn
+ typescript
+ nodePackages.typescript-language-server
+ ];
+in
+pkgs.stdenv.mkDerivation {
+ name = "typeslang";
+ buildInputs = packages;
+}