gnu: human: Update to 0.3.
* gnu/packages/suckless.scm (human): Update to 0.3. [source]: Use version as the tag, and GIT-FILE-NAME.master
parent
8f7c6a5ff7
commit
aa945bf637
|
@ -527,31 +527,28 @@ cups server to be installed.")
|
||||||
"Noice is a small curses-based file browser.")
|
"Noice is a small curses-based file browser.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
;;; We want some commits that are more recent than the latest release, 0.2
|
|
||||||
(define-public human
|
(define-public human
|
||||||
(let ((commit "50c80e6ba12823184b6866e06b955dbd2ccdc5d7")
|
(package
|
||||||
(revision "1"))
|
(name "human")
|
||||||
(package
|
(version "0.3")
|
||||||
(name "human")
|
(source
|
||||||
(version (string-append "0.2-" revision "." (string-take commit 7)))
|
(origin
|
||||||
(source
|
(method git-fetch)
|
||||||
(origin
|
(uri (git-reference
|
||||||
(method git-fetch)
|
(url "git://git.2f30.org/human.git")
|
||||||
(uri (git-reference
|
(commit version)))
|
||||||
(url "git://git.2f30.org/human.git")
|
(file-name (git-file-name name version))
|
||||||
(commit commit)))
|
(sha256
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
(base32
|
||||||
(sha256
|
"0y0bsmvpwfwb2lwspi6a799y34h1faxc6yfanyw6hygxc8661mga"))))
|
||||||
(base32
|
|
||||||
"18xngm4h9vsyip52zwd79rrp1irzg6rs462lpbp61amf7hj955gn"))))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No tests
|
`(#:tests? #f ; no tests
|
||||||
#:make-flags (list "CC=gcc"
|
#:make-flags (list "CC=gcc"
|
||||||
(string-append "PREFIX=" %output))
|
(string-append "PREFIX=" %output))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)))) ; No configure script
|
(delete 'configure)))) ; no configure script
|
||||||
(home-page "https://git.2f30.org/human/")
|
(home-page "https://git.2f30.org/human/")
|
||||||
(synopsis "Convert bytes to human readable formats")
|
(synopsis "Convert bytes to human readable formats")
|
||||||
(description
|
(description
|
||||||
|
@ -560,7 +557,7 @@ human readable format. By default, it tries to detect the best
|
||||||
factorisation, but you can force its output.
|
factorisation, but you can force its output.
|
||||||
You can adjust the number of decimals with the @code{SCALE}
|
You can adjust the number of decimals with the @code{SCALE}
|
||||||
environment variable.")
|
environment variable.")
|
||||||
(license license:wtfpl2))))
|
(license license:wtfpl2)))
|
||||||
|
|
||||||
(define-public fortify-headers
|
(define-public fortify-headers
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue