[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/08: gnu: Add envytools.
From: |
guix-commits |
Subject: |
05/08: gnu: Add envytools. |
Date: |
Fri, 29 Apr 2022 12:09:39 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 6ce8d9be438f9d16338232ebf03a4f749cc1ff4f
Author: Petr Hodina <phodina@protonmail.com>
AuthorDate: Wed Apr 6 14:36:49 2022 +0200
gnu: Add envytools.
* gnu/packages/hardware.scm (envytools): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/hardware.scm | 30 +++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm
index 60b9a9f17b..38bc3881b9 100644
--- a/gnu/packages/hardware.scm
+++ b/gnu/packages/hardware.scm
@@ -5,7 +5,7 @@
;;; Copyright © 2021 Evgeny Pisemsky <evgeny@pisemsky.com>
;;; Copyright © 2021 Léo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Denis Carikli <GNUtoo@cyberdimension.org>
-;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2021, 2022 Petr Hodina <phodina@protonmail.com>
;;; Copyright © 2021 Raghav Gururajan <rg@raghavgururajan.name>
;;; Copyright © 2021 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021, 2022 John Kehayias <john.kehayias@protonmail.com>
@@ -34,6 +34,7 @@
#:use-module (gnu packages admin)
#:use-module (gnu packages autotools)
#:use-module (gnu packages bash)
+ #:use-module (gnu packages bison)
#:use-module (gnu packages compression)
#:use-module (gnu packages check)
#:use-module (gnu packages cpp)
@@ -82,6 +83,33 @@
;; This is a module for packages related to physical hardware that don't (yet)
;; have a more specific home like gps.scm, security-token.scm, &c.
+
+(define-public envytools
+ (let ((commit "9014a51b1436461c7b3b005bdae72bf4912f4e72")
+ (revision "1"))
+ (package
+ (name "envytools")
+ (version (git-version "0.1" revision commit))
+ (home-page "https://github.com/envytools/envytools")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1lqh73yxd5jgv7b770m37zimzhyn4f3053jybkixkhvm93zka8vd"))))
+ (build-system cmake-build-system)
+ (native-inputs (list bison flex pkg-config))
+ (inputs (list libxml2 python))
+ (synopsis "Reverse-engineering tools for Nvidia's proprietary GPU
drivers")
+ (description
+ "This package provides tools for exploring Nvidia's proprietary GPU
+drivers, including an assembler and a disassembler for several GPU instruction
+sets, and tools to deal with register databases.")
+ (license license:expat))))
+
(define-public hwinfo
(package
(name "hwinfo")
- branch master updated (653eef9b41 -> c1719a0adf), guix-commits, 2022/04/29
- 01/08: services: Add missing 'description' fields., guix-commits, 2022/04/29
- 03/08: gnu: lensfun: Update to 0.3.3., guix-commits, 2022/04/29
- 02/08: home: shells: Migrate fish to xdg-configuration-files., guix-commits, 2022/04/29
- 04/08: gnu: zsh: Build and install info pages., guix-commits, 2022/04/29
- 06/08: gnu: Add python-flatten-json., guix-commits, 2022/04/29
- 05/08: gnu: Add envytools.,
guix-commits <=
- 07/08: tests: Avoid starting services to check whether they're running., guix-commits, 2022/04/29
- 08/08: publish: Send uncached narinfo replies from the main thread., guix-commits, 2022/04/29