tvl-depot/boilerplate/typescript/default.nix
William Carroll cd06990fe3 Debug typescript/default.nix
TL;DR
- Change derivation name
- Point to $src/index.html instead of non-existent index.html
- Prefer defining pkgs as a function argument
2020-03-25 17:01:17 +00:00

19 lines
338 B
Nix

{ 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
'';
}