blob: 85e8ec5dac18bf176bc2a3497ff5fad1d649d8f3 (
plain) (
tree)
|
|
{ pkgs, ... }:
pkgs.stdenv.mkDerivation {
name = "goals-webpage";
src = ./.;
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
'';
}
|