ajattix/ajatt/packages/suckless.scm

37 lines
1.3 KiB
Scheme
Raw Permalink Normal View History

2024-02-06 00:24:31 +00:00
(define-module (ajatt packages suckless)
#:use-module (gnu packages xorg)
#:use-module (guix gexp)
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module ((guix licenses) #:prefix license:))
(define-public sselp
(package
(name "sselp")
(version "0.2")
(source (origin
(method url-fetch)
(uri (string-append "https://dl.suckless.org/tools"
2024-02-19 03:14:44 +00:00
"/sselp-" version ".tar.gz"))
2024-02-06 00:24:31 +00:00
(sha256
(base32
2024-02-19 03:14:44 +00:00
"08mqp00lrh1chdrbs18qr0xv63h866lkmfj87kfscwdm1vn9a3yd"))))
2024-02-06 00:24:31 +00:00
(build-system gnu-build-system)
(arguments
(list #:tests? #f
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target))
2024-02-19 03:14:44 +00:00
(string-append "PREFIX=" #$output))
2024-02-06 00:24:31 +00:00
#:phases #~(modify-phases %standard-phases
(delete 'configure))))
(inputs
(list libxrandr))
(synopsis "Simple X selection printer to stdout.")
(description "Simple X selection printer. Prints the X selection to stdout.
Useful for scripts where you can query the X selection without pressing mouse
Button2 in cumbersome ways.")
(home-page "https://tools.suckless.org/x/sselp/")
2024-02-19 03:14:44 +00:00
(license license:expat)))