summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleg Pykhalov <go.wigust@gmail.com>2021-09-18 19:01:23 +0300
committerOleg Pykhalov <go.wigust@gmail.com>2021-09-25 01:49:41 +0300
commit95718ec6458c16d4ad52fb583ab55df2979b8729 (patch)
tree9cb37b6921b827fd016b3bf8736e682e3028543e
parentgnu: homer: Update to 21.07.1. (diff)
downloadguix-wigust-95718ec6458c16d4ad52fb583ab55df2979b8729.tar.gz
gnu: Add vendor-reset-linux-module.
* guix/wigust/packages/linux.scm (vendor-reset-linux-module): New variable.
-rw-r--r--guix/wigust/packages/linux.scm30
1 files changed, 30 insertions, 0 deletions
diff --git a/guix/wigust/packages/linux.scm b/guix/wigust/packages/linux.scm
new file mode 100644
index 0000000..349dcef
--- /dev/null
+++ b/guix/wigust/packages/linux.scm
@@ -0,0 +1,30 @@
+(define-module (wigust packages linux)
+ #:use-module (guix packages)
+ #:use-module (gnu packages)
+ #:use-module (guix git-download)
+ #:use-module (guix build-system linux-module)
+ #:use-module ((guix licenses) #:prefix license:))
+
+(define-public vendor-reset-linux-module
+ (let ((revision "1")
+ (commit "225a49a40941e350899e456366265cf82b87ad25"))
+ (package
+ (name "vendor-reset-linux-module")
+ (version (git-version "0.0.1" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/gnif/vendor-reset")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "071zd8slra0iqsvzqpp6lcvg5dql5hkn161gh9aq34wix7pwzbn5"))))
+ (build-system linux-module-build-system)
+ (arguments
+ `(#:tests? #f ; no tests
+ ))
+ (home-page "https://github.com/gnif/vendor-reset")
+ (synopsis "Linux kernel module to perform GPU reset method calls")
+ (description "")
+ (license license:gpl3+))))