Disable failing goals/default.nix

Disabling failing packages until I can get a working CI build.
This commit is contained in:
William Carroll 2020-08-17 10:25:26 +01:00
parent 59f7481411
commit 1bb32b1bcc
4 changed files with 2 additions and 7 deletions

View file

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