gnu: python-pandas: Fix build on 32-bit.
[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>
19d62486 3;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
39b33961
LC
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 freeipmi)
21 #:use-module (guix packages)
22 #:use-module (guix licenses)
23 #:use-module (guix download)
24 #:use-module (guix build-system gnu)
25 #:use-module (gnu packages readline)
26 #:use-module (gnu packages gnupg))
27
28(define-public freeipmi
29 (package
30 (name "freeipmi")
378a0535 31 (version "1.5.5")
39b33961
LC
32 (source (origin
33 (method url-fetch)
34 (uri (string-append "mirror://gnu/freeipmi/freeipmi-"
35 version ".tar.gz"))
36 (sha256
37 (base32
378a0535 38 "0lzzvhzbdl1cxin4xz3lirqxsjwmjr5ac0qr4g21cqsv2j6vj85f"))))
39b33961
LC
39 (build-system gnu-build-system)
40 (inputs
f9c64688
EF
41 `(("readline" ,readline)
42 ("libgcrypt" ,libgcrypt)))
824f7de8 43 (home-page "https://www.gnu.org/software/freeipmi/")
39b33961
LC
44 (synopsis "Platform management, including sensor and power monitoring")
45 (description
79c311b8
LC
46 "GNU FreeIPMI is a collection of in-band and out-of-band IPMI software
47in accordance with the IPMI v1.5/2.0 specification. These programs provide a
a22dc0c4
LC
48set of interfaces for platform management. Common functionality includes
49sensor monitoring, system event monitoring, power control and
50serial-over-LAN.")
39b33961 51 (license gpl3+)))