diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2023-12-12 13:28:21 +0100 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2023-12-12 13:28:45 +0100 |
commit | 40f1f5b0ca6bfca8e069a6453306699803f8c75d (patch) | |
tree | 94fc80cc82759ce974a817d968d3b1c776ed094f | |
parent | c7215819e110d915752f8d36660578784458a80f (diff) |
gnu: Add cl-machine-state.
* gnu/packages/lisp-xyz.scm (cl-machine-state, ecl-machine-state,
sbcl-machine-state): New variables.
Change-Id: I48d98dabc2fab1d74bc83857cb750efc29e85ab1
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 37 |
1 files changed, 37 insertions, 0 deletions
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")) |