gnu: Add texlive-times.
[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>
3a66217f 3;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
ce46dfeb 4;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
21252596
AE
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (gnu packages gkrellm)
b5b73a82 22 #:use-module ((guix licenses) #:prefix license:)
21252596
AE
23 #:use-module (guix packages)
24 #:use-module (guix download)
25 #:use-module (guix build-system gnu)
1dba6407 26 #:use-module (gnu packages gettext)
21252596
AE
27 #:use-module (gnu packages gtk)
28 #:use-module (gnu packages pkg-config)
29 #:use-module (gnu packages xorg))
30
31(define-public gkrellm
32 (package
33 (name "gkrellm")
ce46dfeb 34 (version "2.3.10")
21252596
AE
35 (source
36 (origin
37 (method url-fetch)
3a66217f 38 (uri (string-append "http://gkrellm.srcbox.net/releases/gkrellm-"
21252596
AE
39 version ".tar.bz2"))
40 (sha256
41 (base32
ce46dfeb 42 "0rnpzjr0ys0ypm078y63q4aplcgdr5nshjzhmz330n6dmnxci7lb"))))
21252596
AE
43 (build-system gnu-build-system)
44 (inputs
b94a6ca0 45 `(("gettext" ,gettext-minimal)
8b0275b6 46 ("gtk+" ,gtk+-2)
21252596
AE
47 ("libice" ,libice)
48 ("libsm" ,libsm)))
49 (native-inputs
50 `(("pkg-config" ,pkg-config)))
51 (arguments
ce46dfeb
TGR
52 `(#:tests? #f ; there is no check target
53 #:phases
54 (modify-phases %standard-phases
55 (delete 'configure)) ; no configure script
21252596
AE
56 #:make-flags
57 (let ((out (assoc-ref %outputs "out")))
58 (list (string-append "INSTALLROOT=" out)
ce46dfeb 59 "CC=gcc"))))
3a66217f 60 (home-page "http://gkrellm.srcbox.net/")
21252596
AE
61 (synopsis "System monitors")
62 (description
63 "GKrellM is a single process stack of system monitors which supports
64applying themes to match its appearance to your window manager, Gtk, or any
65other theme.")
66 (license license:gpl3+)))