packages: suckless: Fix sselp

This commit is contained in:
Luis Guilherme Coelho 2024-02-19 00:14:44 -03:00
parent eedf242653
commit b74dd4d364
Signed by: anemofilia
GPG key ID: 1F2E76ACE3F531C8

View file

@ -14,16 +14,16 @@
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://dl.suckless.org/tools" (uri (string-append "https://dl.suckless.org/tools"
"/sselp" version ".tar.gz")) "/sselp-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0k8fvf9g27yyaqpyhk6apbkq6r4vjwxhff1qb9ignxx2yvxy7qdf")))) "08mqp00lrh1chdrbs18qr0xv63h866lkmfj87kfscwdm1vn9a3yd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
(list #:tests? #f (list #:tests? #f
#:make-flags #:make-flags
#~(list (string-append "CC=" #$(cc-for-target)) #~(list (string-append "CC=" #$(cc-for-target))
(string-append "PREFIX=" %output)) (string-append "PREFIX=" #$output))
#:phases #~(modify-phases %standard-phases #:phases #~(modify-phases %standard-phases
(delete 'configure)))) (delete 'configure))))
(inputs (inputs
@ -33,4 +33,4 @@
Useful for scripts where you can query the X selection without pressing mouse Useful for scripts where you can query the X selection without pressing mouse
Button2 in cumbersome ways.") Button2 in cumbersome ways.")
(home-page "https://tools.suckless.org/x/sselp/") (home-page "https://tools.suckless.org/x/sselp/")
(license license:expat))) (license license:expat)))