Disable failing goals/default.nix
Disabling failing packages until I can get a working CI build.
This commit is contained in:
parent
59f7481411
commit
1bb32b1bcc
4 changed files with 2 additions and 7 deletions
19
website/goals/default.nix.ignore
Normal file
19
website/goals/default.nix.ignore
Normal 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
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue