019f8fd211
git-subtree-dir: users/wpcarro git-subtree-mainline:464bbcb15c
git-subtree-split:24f5a642af
Change-Id: I6105b3762b79126b3488359c95978cadb3efa789
19 lines
397 B
Text
19 lines
397 B
Text
{ pkgs, ... }:
|
|
|
|
pkgs.stdenv.mkDerivation {
|
|
name = "goals-webpage";
|
|
src = builtins.path { path = ./.; name = "goals"; };
|
|
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
|
|
'';
|
|
}
|