diff options
author | John Darrington <jmd@gnu.org> | 2017-01-12 20:21:37 +0100 |
---|---|---|
committer | John Darrington <jmd@gnu.org> | 2017-01-12 21:11:21 +0100 |
commit | f50fff693bdfbb71fea7ac9ee7dcef0eb9fb77bc (patch) | |
tree | 8c89f1015902bf17ee2a10098d5254b0e70baadf /gnu/packages | |
parent | 9a443cf90d973dd190acb0077d84d5a5844be65f (diff) |
gnu: Add xmessage.
* gnu/packages/xorg.scm (xmessage): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xorg.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index fe607e2632..ac35a8c179 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -5594,6 +5594,37 @@ user-friendly mechanism to start the X server.") Intrinsics (Xt) Library.") (license license:x11))) +(define-public xmessage + (package + (name "xmessage") + (version "1.0.4") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://xorg/individual/app/" name "-" + version + ".tar.gz")) + (sha256 + (base32 + "1jmcac1xbwplbxfl75sr6w3zqhx1khpdzlqippjsr31cjp1rjc48")))) + (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 "Displays a message or query in a window") + (description + "Xmessage displays a message or query in a window. The user can click +on a button to dismiss it or can select one of several buttons +to answer a question. Xmessage can also exit after a specified time.") + (license license:x11))) + (define-public xterm (package (name "xterm") |