3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: st: Update to 0.8.2.

* gnu/packages/suckless.scm (st): Update to 0.8.2.
[arguments]: Re-indent.
This commit is contained in:
Tobias Geerinckx-Rice 2019-03-18 23:38:56 +01:00
parent 4b886fb00c
commit 362f5306e4
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -226,28 +226,27 @@ numbers of user-defined menu items efficiently.")
(define-public st
(package
(name "st")
(version "0.8.1")
(version "0.8.2")
(source
(origin
(method url-fetch)
(uri (string-append "https://dl.suckless.org/st/st-"
version ".tar.gz"))
(sha256
(base32
"09k94v3n20gg32xy7y68p96x9dq5msl80gknf9gbvlyjp3i0zyy4"))))
(base32 "0ddz2mdp1c7q67rd5vrvws9r0493ln0mlqyc3d73dv8im884xdxf"))))
(build-system gnu-build-system)
(arguments
'(#:tests? #f ; no tests
'(#:tests? #f ; no tests
#:make-flags (list "CC=gcc"
(string-append "PREFIX=" %output))
#:phases
(modify-phases %standard-phases
(delete 'configure)
(add-after 'unpack 'inhibit-terminfo-install
(lambda _
(substitute* "Makefile"
(("\ttic .*") ""))
#t)))))
(lambda _
(substitute* "Makefile"
(("\ttic .*") ""))
#t)))))
(inputs
`(("libx11" ,libx11)
("libxft" ,libxft)