about summary refs log blame commit diff
path: root/website/habitgarden/default.nix
blob: 030d6abec484643f8cf890aa8d66e060094c494d (plain) (tree)
1
2
3
4
5



                          
                                                             













                                                   
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "typescript";
  srcs = builtins.path { path = ./.; name = "habitgarden"; };
  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
  '';
}