Cargo 1.84.0 seems to have changed the output format of cargo vendor again, once again invalidating fetchCargoTarball FOD hashes. It's time to fix this once and for all, switching across the board to fetchCargoVendor, which is not dependent on cargo vendor's output format.
		
			
				
	
	
		
			25 lines
		
	
	
		
			483 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			483 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  rustPlatform,
 | 
						|
  fetchCrate,
 | 
						|
  pkg-config,
 | 
						|
  openssl,
 | 
						|
}:
 | 
						|
 | 
						|
rustPlatform.buildRustPackage rec {
 | 
						|
  pname = "shticker-book-unwritten";
 | 
						|
  version = "1.2.0";
 | 
						|
 | 
						|
  src = fetchCrate {
 | 
						|
    inherit version;
 | 
						|
    crateName = "shticker_book_unwritten";
 | 
						|
    hash = "sha256-jI2uL8tMUmjZ5jPkCV2jb98qtKwi9Ti4NVCPfuO3iB4=";
 | 
						|
  };
 | 
						|
 | 
						|
  useFetchCargoVendor = true;
 | 
						|
  cargoHash = "sha256-0eumZoAL8/nkeFS+sReCAYKHiXiqZHfdC/9Ao5U6/SQ=";
 | 
						|
 | 
						|
  nativeBuildInputs = [ pkg-config ];
 | 
						|
 | 
						|
  buildInputs = [ openssl ];
 | 
						|
}
 |