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