mirror of
				https://github.com/Stunkymonkey/nixos.git
				synced 2025-10-31 01:32:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
	
		
			365 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { stdenv, fetchzip }:
 | |
| stdenv.mkDerivation rec {
 | |
|   pname = "homer";
 | |
|   version = "23.02.2";
 | |
| 
 | |
|   src = fetchzip {
 | |
|     url = "https://github.com/bastienwirtz/homer/releases/download/v${version}/homer.zip";
 | |
|     hash = "sha256-/YUuv5kctjVbtoo0bhSwTKc5NFpkA7mwCllwESl/bVI=";
 | |
|     stripRoot = false;
 | |
|   };
 | |
| 
 | |
|   installPhase = ''
 | |
|     cp -r $src $out/
 | |
|   '';
 | |
|   sourceRoot = ".";
 | |
| }
 | 
