diff options
Diffstat (limited to 'users/wpcarro/website/goals/default.nix.ignore')
-rw-r--r-- | users/wpcarro/website/goals/default.nix.ignore | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/users/wpcarro/website/goals/default.nix.ignore b/users/wpcarro/website/goals/default.nix.ignore new file mode 100644 index 000000000000..2006204bec94 --- /dev/null +++ b/users/wpcarro/website/goals/default.nix.ignore @@ -0,0 +1,19 @@ +{ 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 + ''; +} |