blob: 84949cae7f3ca6db62a6fa404cc886cfcd0b6410 (
plain) (
tree)
|
|
{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "typescript";
srcs = builtins.path { path = ./.; name = "typescript"; };
buildInputs = with pkgs; [
nodejs
# Exposes lscpu for parcel.js
utillinux
];
# parcel.js needs number of CPUs
PARCEL_WORKERS = "1";
buildPhase = ''
export HOME="."
npx parcel build src/index.html --public-url ./
'';
installPhase = ''
mv dist $out
'';
# TODO(wpcarro): This doesn't build at all.
meta.ci.skip = true;
}
|