tvl-depot/users/wpcarro/website/goals/default.nix.ignore

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
397 B
Text
Raw Normal View History

{ 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
'';
}