gnu: gxmessage: Add missing input.
[jackhill/guix/guix.git] / gnu / packages / gxmessage.scm
CommitLineData
99b030c7
JD
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2014 John Darrington <jmd@gnu.org>
377bfbc1 3;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
99b030c7
JD
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (gnu packages gxmessage)
21 #:use-module (guix licenses)
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages glib)
26 #:use-module (gnu packages pkg-config)
27 #:use-module (gnu packages gtk)
28 #:use-module (gnu packages))
29
30(define-public gxmessage
31 (package
32 (name "gxmessage")
0bd6f138 33 (version "3.4.3")
99b030c7
JD
34 (source (origin
35 (method url-fetch)
36 (uri (string-append "mirror://gnu/gxmessage/gxmessage-"
37 version ".tar.gz"))
38 (sha256
0bd6f138 39 (base32 "01ggvvp0nyn8xczh93icifnji468wsjgqzd1f1bixwsqziaicknv"))))
99b030c7
JD
40 (build-system gnu-build-system)
41 (inputs
0bd6f138 42 `(("gtk+" ,gtk+)))
99b030c7 43 (native-inputs
377bfbc1
EF
44 `(("gtk+-bin" ,gtk+ "bin") ; gtk-update-icon-cache
45 ("intltool" ,intltool)
99b030c7
JD
46 ("pkg-config" ,pkg-config)))
47 (home-page "http://www.gnu.org/software/gxmessage/")
48 (synopsis "Open popup message window with buttons for return")
49 (description "GNU gxmessage is a program that pops up dialog windows, which display
50a message to the user and waits for their action. The program then exits
51with an exit code corresponding to the response.")
52 (license gpl3+)))