gnu: gettext: Rename binding to 'gnu-gettext'.
[jackhill/guix/guix.git] / gnu / packages / gkrellm.scm
CommitLineData
21252596
AE
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages gkrellm)
20 #:use-module ((guix licenses)
21 #:renamer (symbol-prefix-proc 'license:))
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
1dba6407 25 #:use-module (gnu packages gettext)
21252596
AE
26 #:use-module (gnu packages gtk)
27 #:use-module (gnu packages pkg-config)
28 #:use-module (gnu packages xorg))
29
30(define-public gkrellm
31 (package
32 (name "gkrellm")
33 (version "2.3.5")
34 (source
35 (origin
36 (method url-fetch)
37 (uri (string-append "http://members.dslextreme.com/users/billw/gkrellm/gkrellm-"
38 version ".tar.bz2"))
39 (sha256
40 (base32
41 "12rc6zaa7kb60b9744lbrlfkxxfniprm6x0mispv63h4kh75navh"))))
42 (build-system gnu-build-system)
43 (inputs
1dba6407 44 `(("gettext" ,gnu-gettext)
8b0275b6 45 ("gtk+" ,gtk+-2)
21252596
AE
46 ("libice" ,libice)
47 ("libsm" ,libsm)))
48 (native-inputs
49 `(("pkg-config" ,pkg-config)))
50 (arguments
51 `(#:tests? #f ; there is no check target
52 #:phases
53 (alist-delete
54 'configure
55 %standard-phases)
56 #:make-flags
57 (let ((out (assoc-ref %outputs "out")))
58 (list (string-append "INSTALLROOT=" out)
59 "CC=gcc"
60 "X11_LIBS = -lX11 -lSM -lICE -lgmodule-2.0"))))
61 (home-page "http://members.dslextreme.com/users/billw/gkrellm/gkrellm.html")
62 (synopsis "System monitors")
63 (description
64 "GKrellM is a single process stack of system monitors which supports
65applying themes to match its appearance to your window manager, Gtk, or any
66other theme.")
67 (license license:gpl3+)))