20 lines
353 B
Nix
20 lines
353 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 --public-url ./
|
||
|
'';
|
||
|
installPhase = ''
|
||
|
mv dist $out
|
||
|
'';
|
||
|
}
|