about summary refs log blame commit diff
path: root/users/wpcarro/boilerplate/typescript/default.nix
blob: d27162d345a7753edd2fedbf2a5d06d3916bd64a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13



                          
                                                            







                                  
                   
                                                   



                   


                                             
 
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "typescript";
  srcs = builtins.path { path = ./.; name = "typescript"; };
  buildInputs = with pkgs; [
    nodejs
    # Exposes lscpu for parcel.js
    utillinux
  ];
  # parcel.js needs number of CPUs
  PARCEL_WORKERS = "1";
  buildPhase = ''
    export HOME="."
    npx parcel build src/index.html --public-url ./
  '';
  installPhase = ''
    mv dist $out
  '';

  # TODO(wpcarro): This doesn't build at all.
  meta.ci = false;
}