guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add cl-machine-state.


From: guix-commits
Subject: branch master updated: gnu: Add cl-machine-state.
Date: Tue, 12 Dec 2023 07:29:54 -0500

This is an automated email from the git hooks/post-receive script.

ambrevar pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 40f1f5b0ca gnu: Add cl-machine-state.
40f1f5b0ca is described below

commit 40f1f5b0ca6bfca8e069a6453306699803f8c75d
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Tue Dec 12 13:28:21 2023 +0100

    gnu: Add cl-machine-state.
    
    * gnu/packages/lisp-xyz.scm (cl-machine-state, ecl-machine-state,
    sbcl-machine-state): New variables.
    
    Change-Id: I48d98dabc2fab1d74bc83857cb750efc29e85ab1
---
 gnu/packages/lisp-xyz.scm | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)

diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index 61e7ce0e33..31192f3c4e 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -19190,6 +19190,43 @@ Lisp.")
 (define-public cl-percent-encoding
   (sbcl-package->cl-source-package sbcl-percent-encoding))
 
+(define-public sbcl-machine-state
+  (let ((commit "afa7392bc5dcb689cd170bcca765fb6ce6e4efc5")
+        (revision "1"))
+    (package
+      (name "sbcl-machine-state")
+      (version (git-version "1.0.0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Shinmera/machine-state";)
+               (commit commit)))
+         (file-name (git-file-name "machine-state" version))
+         (sha256
+          (base32 "1b897wj06cnalzf5nl6rif1skpa79rzc9a562x1bdhvanhsp7hwa"))))
+      (build-system asdf-build-system/sbcl)
+      (inputs
+       (list sbcl-bordeaux-threads
+             sbcl-cffi
+             sbcl-cl-opengl
+             sbcl-documentation-utils))
+      (arguments
+       '(#:tests? #f                    ; No tests.
+         #:asd-systems '("machine-state" "machine-state/opengl")))
+      (home-page "https://notabug.org/cage/cl-mount-info.git";)
+      (synopsis "Retrieve machine state information about CPU time, memory 
usage and more")
+      (description
+       "This library implements various functions to access status information
+about the machine, process, etc.")
+      (license license:zlib))))
+
+(define-public ecl-machine-state
+  (sbcl-package->ecl-package sbcl-machine-state))
+
+(define-public cl-machine-state
+  (sbcl-package->cl-source-package sbcl-machine-state))
+
 (define-public sbcl-cl-mount-info
   (let ((commit "2024f5037a7f63db3e3587dc9972cd7b9318f06b")
         (revision "1"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]