gnu: Fix fetching the linux-libre deblobbing script.
This is a followup to commit 105a037090.
* gnu/packages/linux.scm (linux-libre-deblob-scripts): Truncate the version in
the file-name, not the source URI.
			
			
This commit is contained in:
		
							parent
							
								
									3c9294c05f
								
							
						
					
					
						commit
						cca5720f41
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -195,9 +195,9 @@ defconfig.  Return the appropriate make target if applicable, otherwise return
 | 
				
			||||||
          (method url-fetch)
 | 
					          (method url-fetch)
 | 
				
			||||||
          (uri (string-append "https://linux-libre.fsfla.org"
 | 
					          (uri (string-append "https://linux-libre.fsfla.org"
 | 
				
			||||||
                              "/pub/linux-libre/releases/" version "-gnu/"
 | 
					                              "/pub/linux-libre/releases/" version "-gnu/"
 | 
				
			||||||
                              "deblob-" version))
 | 
					                              "deblob-" (version-major+minor version)))
 | 
				
			||||||
          (file-name (string-append "linux-libre-deblob-"
 | 
					          (file-name (string-append "linux-libre-deblob-"
 | 
				
			||||||
                                    (version-major+minor version)))
 | 
					                                    version))
 | 
				
			||||||
          (sha256 deblob-hash))
 | 
					          (sha256 deblob-hash))
 | 
				
			||||||
        (origin
 | 
					        (origin
 | 
				
			||||||
          (method url-fetch)
 | 
					          (method url-fetch)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue