about summary refs log tree commit diff
path: root/boilerplate/typescript/default.nix
blob: f4d3318439d1bcd38e9ad03546b8252a0e09d59c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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 --public-url ./
  '';
  installPhase = ''
    mv dist $out
  '';
}