about summary refs log tree commit diff
path: root/website/sandbox/contentful/default.nix
blob: 00714f45d09811887d33a2ffc31996c4f1885b66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
let
  pkgs = import <nixpkgs> {};
in pkgs.stdenv.mkDerivation {
  name = "ideal-website";
  src = builtins.path { path = ./.; name = "contentful"; };
  buildInputs = with pkgs; [
    nodejs
    # Exposes lscpu for parcel.js
    utillinux
  ];
  # parcel.js needs number of CPUs
  PARCEL_WORKERS = "1";
  buildPhase = ''
    npx parcel build index.html
  '';
  installPhase = ''
    mv dist $out
  '';
}