Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / gnu / packages / freeipmi.scm
CommitLineData
39b33961
LC
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
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 freeipmi)
20 #:use-module (guix packages)
21 #:use-module (guix licenses)
22 #:use-module (guix download)
23 #:use-module (guix build-system gnu)
24 #:use-module (gnu packages readline)
25 #:use-module (gnu packages gnupg))
26
27(define-public freeipmi
28 (package
29 (name "freeipmi")
1109ddcd 30 (version "1.4.9")
39b33961
LC
31 (source (origin
32 (method url-fetch)
33 (uri (string-append "mirror://gnu/freeipmi/freeipmi-"
34 version ".tar.gz"))
35 (sha256
36 (base32
1109ddcd 37 "0v2xfwik2mv6z8066raiypc4xymjvr8pb0mv3mc3g4ym4km132qp"))))
39b33961
LC
38 (build-system gnu-build-system)
39 (inputs
40 `(("readline" ,readline) ("libgcrypt" ,libgcrypt)))
41 (home-page "http://www.gnu.org/software/freeipmi/")
42 (synopsis "Platform management, including sensor and power monitoring")
43 (description
79c311b8
LC
44 "GNU FreeIPMI is a collection of in-band and out-of-band IPMI software
45in accordance with the IPMI v1.5/2.0 specification. These programs provide a
a22dc0c4
LC
46set of interfaces for platform management. Common functionality includes
47sensor monitoring, system event monitoring, power control and
48serial-over-LAN.")
39b33961 49 (license gpl3+)))