aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/freeipmi.scm
blob: 87b7ac139faa98e25d43e30ee3484c85e4854a96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org>
;;; Copyright © 2015, 2016, 2017, 2020, 2021, 2022 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2019–2022 Tobias Geerinckx-Rice <me@tobias.gr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages freeipmi)
  #:use-module (guix packages)
  #:use-module (guix licenses)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages gnupg))

(define-public freeipmi
  (package
    (name "freeipmi")
    (version "1.6.9")
    (source (origin
             (method url-fetch)
             (uri (string-append "mirror://gnu/freeipmi/freeipmi-"
                                 version ".tar.gz"))
             (sha256
              (base32
               "01l2kkf2f0c7p8pq8qsil53fv0yaaciwq7n3kjlvbwfhycsiqppj"))))
    (build-system gnu-build-system)
    (arguments
     `(#:configure-flags '("--disable-static"
                           ,@(if (%current-target-system)
                               ;; We cannot check for these devices
                               ;; when cross compiling.
                               `("ac_cv_file__dev_random=yes"
                                 "ac_cv_file__dev_urandom=yes")
                               '()))))
    (inputs
     (list libgcrypt))
    (home-page "https://www.gnu.org/software/freeipmi/")
    (synopsis "Platform management, including sensor and power monitoring")
    (description
     "GNU FreeIPMI is a collection of in-band and out-of-band IPMI software
in accordance with the IPMI v1.5/2.0 specification.  These programs provide a
set of interfaces for platform management.  Common functionality includes
sensor monitoring, system event monitoring, power control and
serial-over-LAN.")
    (license gpl3+)))
rove the description.Leo Famulari 2022-01-26gnu: Add Vorta.Leo Famulari 2022-01-24gnu: Add btrbk.Maxim Cournoyer 2022-01-06gnu: snapraid: Update to 12.0.Tobias Geerinckx-Rice 2022-01-06gnu: snapraid: ‘Fix’ build.Tobias Geerinckx-Rice 2022-01-06gnu: snapraid: Use G-expressions.Tobias Geerinckx-Rice 2022-01-06gnu: wimlib: Update to 1.13.5.Tobias Geerinckx-Rice 2022-01-06gnu: borgmatic: Use G-expressions.Tobias Geerinckx-Rice 2022-01-06gnu: borgmatic: Update to 1.5.22.Tobias Geerinckx-Rice 2021-12-29gnu: dirvish: Fix trailing whitespace in description.Vagrant Cascadian 2021-12-22gnu: disarchive: Update to 0.4.0.Timothy Sample 2021-12-13gnu: Simplify package inputs.Ludovic Courtès 2021-12-05Merge remote-tracking branch 'origin/master' into core-updates-frozenRicardo Wurmus 2021-11-27gnu: borgmatic: Update to 1.5.21.Tobias Geerinckx-Rice 2021-11-17Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-11-15gnu: borgmatic: Fix typo in description.Nicolas Goaziou 2021-11-14gnu: Add borgmatic.Arun Isaac 2021-11-13gnu: duplicity: Update to 0.8.21.Tobias Geerinckx-Rice 2021-11-11gnu: Remove references to a removed patch.Mathieu Othacehe 2021-10-31Merge remote-tracking branch 'origin/master' into core-updates-frozenEfraim Flashner 2021-10-24gnu: disarchive: Update to 0.3.0.Timothy Sample 2021-10-23gnu: Use 'search-input-file' some more.Ludovic Courtès 2021-10-18Merge remote-tracking branch 'signed/master' into core-updatesMathieu Othacehe 2021-10-17gnu: duplicity: Update home-page.Efraim Flashner 2021-10-17gnu: duplicity: Depend on dbus.Vivien Kraus 2021-10-17gnu: duplicity: Depend on python-pygobject.Vivien Kraus 2021-10-12Merge remote-tracking branch 'origin/master' into core-updates-frozen.Mathieu Othacehe 2021-10-03gnu: snapraid: Update to 11.6.Tobias Geerinckx-Rice 2021-09-07Merge branch 'master' into core-updates-frozenLudovic Courtès 2021-08-30gnu: libchop: Don't append to CPATH unconditionally.Efraim Flashner 2021-08-12Merge branch 'master' into core-updates-frozenMarius Bakke