Thanks to the Nix anti-patterns documented here... https://nix.dev/anti-patterns/language.html#reproducability-referencing-top-level-directory-with ...I'm cleaning up some of my Nix expressions. Read the article for more context.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			400 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			400 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ 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 = ''
 | 
						|
    npx parcel build src/index.html --public-url ./
 | 
						|
  '';
 | 
						|
  installPhase = ''
 | 
						|
    mv dist $out
 | 
						|
  '';
 | 
						|
}
 |