Something changed in the upstream we fetch this source from that's causing the fetch to fail - I can only assume it's a yanked rev, but I'm not really sure. fetchgit from nixpkgs appears to be a little bit more robust than builtins.fetchGit, so let's switch to that, and also upgrade to a rev that we know is present. Fixes: b/96 Change-Id: I8983c2df11ab4fa20f60915f950c6a7378efd2fd Reviewed-on: https://cl.tvl.fyi/c/depot/+/2691 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			331 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| # Portable URI library
 | |
| { depot, ... }:
 | |
| 
 | |
| let src = depot.third_party.fetchgit {
 | |
|   url = "http://git.kpe.io/puri.git";
 | |
|   rev = "4bbab89d9ccbb26346899d1f496c97604fec567b";
 | |
|   sha256 = "0gq2rsr0aihs0z20v4zqvmdl4szq53b52rh97pvnmwrlbn4mapmd";
 | |
| };
 | |
| in depot.nix.buildLisp.library {
 | |
|   name = "puri";
 | |
|   srcs = [
 | |
|     (src + "/src.lisp")
 | |
|   ];
 | |
| }
 |