mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Use a descriptive file-name for linux-libre deblobbing scripts.
Fixes <https://bugs.gnu.org/42789>. * gnu/packages/linux.scm (linux-libre-deblob-scripts): Set the file-name of the deblob and deblob-check scripts.
This commit is contained in:
parent
c02398edf4
commit
1bc275034f
1 changed files with 4 additions and 0 deletions
|
@ -194,12 +194,16 @@ (define (linux-libre-deblob-scripts version
|
|||
(uri (string-append "https://linux-libre.fsfla.org"
|
||||
"/pub/linux-libre/releases/" version "-gnu/"
|
||||
"deblob-" (version-major+minor version)))
|
||||
(file-name (string-append "linux-libre-deblob-"
|
||||
(version-major+minor version)))
|
||||
(sha256 deblob-hash))
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://linux-libre.fsfla.org"
|
||||
"/pub/linux-libre/releases/" version "-gnu/"
|
||||
"deblob-check"))
|
||||
(file-name (string-append "linux-libre-deblob-check-"
|
||||
(version-major+minor version)))
|
||||
(sha256 deblob-check-hash))))
|
||||
|
||||
(define deblob-scripts-5.8
|
||||
|
|
Loading…
Reference in a new issue