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.
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, briefcase, ... }:
 | |
| 
 | |
| pkgs.stdenv.mkDerivation {
 | |
|   name = "wpcarro.dev";
 | |
|   src = builtins.path { path = ./.; name = "website"; };
 | |
|   installPhase = ''
 | |
|     mkdir -p $out
 | |
|     cp $src/index.html $out
 | |
| 
 | |
|     mkdir -p $out/goals
 | |
|     cp -r ${briefcase.website.goals}/* $out/goals
 | |
| 
 | |
|     mkdir -p $out/habits
 | |
|     cp ${briefcase.website.habits} $out/habits/index.html
 | |
|   '';
 | |
| }
 |