diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2013-05-07 00:12:18 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2013-05-07 00:12:18 +0200 |
| commit | 39b33961e9d0df6f1373e846ab14dc857a6fa5b5 (patch) | |
| tree | 574cce7e4d43d80383dd71a4c1116336b695b00a /gnu | |
| parent | 6d267f0a5b745f282757c29af26c571f590b4144 (diff) | |
gnu: Add GNU FreeIPMI.
* gnu/packages/freeipmi.scm: New file.
* Makefile.am (MODULES): Add it.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/freeipmi.scm | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/gnu/packages/freeipmi.scm b/gnu/packages/freeipmi.scm new file mode 100644 index 00000000000..2a0d7627f4e --- /dev/null +++ b/gnu/packages/freeipmi.scm | |||
| @@ -0,0 +1,53 @@ | |||
| 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") | ||
| 30 | (version "1.2.6") | ||
| 31 | (source (origin | ||
| 32 | (method url-fetch) | ||
| 33 | (uri (string-append "mirror://gnu/freeipmi/freeipmi-" | ||
| 34 | version ".tar.gz")) | ||
| 35 | (sha256 | ||
| 36 | (base32 | ||
| 37 | "0fjc9kr6x1k55a101qikl3rsc9y6fh4iqr84mj7kgzqgk7rwp5ij")))) | ||
| 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 | ||
| 44 | "GNU FreeIPMI provides in-band and out-of-band IPMI software based on the | ||
| 45 | IPMI v1.5/2.0 specification. The IPMI specification defines a set of | ||
| 46 | interfaces for platform management and is implemented by a number vendors for | ||
| 47 | system management. The features of IPMI that most users will be interested in | ||
| 48 | are sensor monitoring, system event monitoring, power control, and | ||
| 49 | serial-over-LAN (SOL). The FreeIPMI tools and libraries listed below should | ||
| 50 | provide users with the ability to access and utilize these and many other | ||
| 51 | features. A number of useful features for large HPC or cluster environments | ||
| 52 | have also been implemented into FreeIPMI.") | ||
| 53 | (license gpl3+))) | ||
