tvl-depot/website/goals/default.nix.ignore
William Carroll 1bb32b1bcc Disable failing goals/default.nix
Disabling failing packages until I can get a working CI build.
2020-08-20 11:26:31 +01:00

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