TL;DR - Change derivation name - Point to $src/index.html instead of non-existent index.html - Prefer defining pkgs as a function argument
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			338 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, ... }:
 | |
| 
 | |
| pkgs.stdenv.mkDerivation {
 | |
|   name = "typescript";
 | |
|   srcs = ./.;
 | |
|   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
 | |
|   '';
 | |
|   installPhase = ''
 | |
|     mv dist $out
 | |
|   '';
 | |
| }
 |