gnu: daemontools: Don't assume sources match NAME.
* gnu/packages/admin.scm (daemontools)[source, argumenst]: Hard-code name.master
parent
16572d0e02
commit
213114a7b1
|
@ -219,8 +219,8 @@ interface and is based on GNU Guile.")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://cr.yp.to/" name "/"
|
"https://cr.yp.to/daemontools/"
|
||||||
name "-" version ".tar.gz"))
|
"daemontools-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"07scvw88faxkscxi91031pjkpccql6wspk4yrlnsbrrb5c0kamd5"))))
|
"07scvw88faxkscxi91031pjkpccql6wspk4yrlnsbrrb5c0kamd5"))))
|
||||||
|
@ -231,7 +231,7 @@ interface and is based on GNU Guile.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'chdir
|
(add-after 'unpack 'chdir
|
||||||
(lambda _
|
(lambda _
|
||||||
(chdir ,(string-append name "-" version))
|
(chdir ,(string-append "daemontools-" version))
|
||||||
#t))
|
#t))
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
(add-before 'build 'patch
|
(add-before 'build 'patch
|
||||||
|
|
Reference in New Issue