guix-commits
[Top][All Lists]
Advanced

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

02/17: gnu: Move Linux-Libre modules to their own section.


From: guix-commits
Subject: 02/17: gnu: Move Linux-Libre modules to their own section.
Date: Sun, 19 May 2019 22:18:29 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit e1f640db8fa2a3aee018ce80df47b37e245c4b52
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Thu May 9 22:51:59 2019 +0200

    gnu: Move Linux-Libre modules to their own section.
    
    * gnu/packages/linux.scm (vhba-module): Move to its own section.
---
 gnu/packages/linux.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 59cb1e6..08389e2 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -559,6 +559,33 @@ between the CDemu userspace daemon and linux kernel.")
 
 
 ;;;
+;;; Linux kernel modules.
+;;;
+
+(define-public vhba-module
+  (package
+    (name "vhba-module")
+    (version "20190410")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    
"http://downloads.sourceforge.net/cdemu/vhba-module/vhba-module-";
+                    version ".tar.bz2"))
+              (sha256
+               (base32
+                "1513hq130raxp9z5grj54cwfjfxj05apipxg425j0zicii59a60c"))))
+    (build-system linux-module-build-system)
+    (arguments
+     ;; TODO: No tests?
+     `(#:tests? #f))
+    (home-page "https://cdemu.sourceforge.io/";)
+    (synopsis "Kernel module that emulates SCSI devices")
+    (description "VHBA module provides a Virtual (SCSI) HBA, which is the link
+between the CDemu userspace daemon and linux kernel.")
+    (license license:gpl2+)))
+
+
+;;;
 ;;; Pluggable authentication modules (PAM).
 ;;;
 



reply via email to

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