about summary refs log blame commit diff
path: root/boilerplate/typescript/default.nix
blob: b7aaf0a57763e6d37838a77e1463f07c6706bafa (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13



                          








                                  
                                    




                   
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "typescript";
  srcs = ./.;
  buildInputs = with pkgs; [
    nodejs
    # Exposes lscpu for parcel.js
    utillinux
  ];
  # parcel.js needs number of CPUs
  PARCEL_WORKERS = "1";
  buildPhase = ''
    npx parcel build $src/index.html
  '';
  installPhase = ''
    mv dist $out
  '';
}