aboutsummaryrefslogtreecommitdiff
path: root/default.nix
blob: 54c2e2701f1d7b937a1b6d0b55b656af5c45828f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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;
}