mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add xmag.
* gnu/packages/xorg.scm (xmag): New variable.
This commit is contained in:
parent
f50fff693b
commit
6ea1523ac8
1 changed files with 29 additions and 0 deletions
|
@ -5594,6 +5594,35 @@ (define-public libxaw3d
|
||||||
Intrinsics (Xt) Library.")
|
Intrinsics (Xt) Library.")
|
||||||
(license license:x11)))
|
(license license:x11)))
|
||||||
|
|
||||||
|
(define-public xmag
|
||||||
|
(package
|
||||||
|
(name "xmag")
|
||||||
|
(version "1.0.6")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://xorg/individual/app/" name "-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"19bsg5ykal458d52v0rvdx49v54vwxwqg8q36fdcsv9p2j8yri87"))))
|
||||||
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags
|
||||||
|
(list (string-append "--with-appdefaultdir="
|
||||||
|
%output ,%app-defaults-dir))))
|
||||||
|
(inputs
|
||||||
|
`(("libxaw" ,libxaw)))
|
||||||
|
(native-inputs
|
||||||
|
`(("pkg-config" ,pkg-config)))
|
||||||
|
(home-page "https://www.x.org/wiki/")
|
||||||
|
(synopsis "Display or capture a magnified part of a X11 screen")
|
||||||
|
(description "Xmag displays and captures a magnified snapshot of a portion
|
||||||
|
of an X11 screen.")
|
||||||
|
(license license:x11)))
|
||||||
|
|
||||||
(define-public xmessage
|
(define-public xmessage
|
||||||
(package
|
(package
|
||||||
(name "xmessage")
|
(name "xmessage")
|
||||||
|
|
Loading…
Reference in a new issue