10 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			159 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ pkgs, ... }:
 | 
						|
 | 
						|
pkgs.stdenv.mkDerivation {
 | 
						|
  name = "learn.wpcarro.dev";
 | 
						|
  src = ./static;
 | 
						|
  buildPhase = ''
 | 
						|
    cp -R $src $out
 | 
						|
  '';
 | 
						|
  dontInstall = true;
 | 
						|
}
 |