mirror of
https://codeberg.org/guix/guix.git
synced 2026-01-25 03:55:08 -06:00
gnu: sfm: Improve style.
* gnu/packages/suckless.scm (sfm)[arguments]: Use G-Expressions. [source]: Update url. Change-Id: Idd2377f7ed21c13049c0db8137ba42f7a4f1af9b
This commit is contained in:
parent
7409d0cab8
commit
ef0c29a74f
1 changed files with 9 additions and 8 deletions
|
|
@ -1126,20 +1126,21 @@ support.")
|
|||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "git://git.afify.dev/sfm.git")
|
||||
(url "https://github.com/afify/sfm")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0g6k884mggryld0k054sjcj6kpkbca9cvr50w98klszym73yw0sp"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ;no check target
|
||||
#:make-flags
|
||||
(list (string-append "CC=" ,(cc-for-target))
|
||||
(string-append "PREFIX=" %output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)))) ;no configure script
|
||||
(list
|
||||
#:tests? #f ;no check target
|
||||
#:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)))) ;no configure script
|
||||
(home-page "https://github.com/afify/sfm")
|
||||
(synopsis "Simple file manager")
|
||||
(description "sfm is a simple file manager.")
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue