[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/27: gnu: Add rtl8812au-aircrack-ng-linux-module.
From: |
guix-commits |
Subject: |
01/27: gnu: Add rtl8812au-aircrack-ng-linux-module. |
Date: |
Sun, 16 Feb 2020 16:59:23 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit ce5af131d896f45c088a30d13f62a0914d97829b
Author: Tobias Geerinckx-Rice <address@hidden>
AuthorDate: Tue Feb 11 04:29:35 2020 +0100
gnu: Add rtl8812au-aircrack-ng-linux-module.
* gnu/packages/linux.scm (rtl8812au-aircrack-ng-linux-module):
New public variable.
---
gnu/packages/linux.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index ce8ca8c..ee3d6a4 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -932,6 +932,52 @@ It grants direct and undocumented access to your hardware
that may cause damage
and should be used with caution, especially on untested models.")
(license license:gpl3+))) ; see README.md (no licence headers)
+(define-public rtl8812au-aircrack-ng-linux-module
+ (let ((commit "945d6ed6505c32f0993b1dba576388e92e78101b")
+ (revision "0"))
+ (package
+ (name "rtl8812au-aircrack-ng-linux-module")
+ (version (git-version "5.6.4.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/aircrack-ng/rtl8812au.git")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1pjws7qb5l4z9k80vgz4zdxmqhbwxjjrmkpf0hijf821byyddvi7"))
+ (modules '((guix build utils)))
+ (snippet
+ '(begin
+ ;; Remove bundled tarballs, APKs, word lists, speadsheets,
+ ;; and other unnecessary unlicenced things.
+ (for-each delete-file-recursively (list "android"
+ "docs"
+ "tools"))
+ #t))))
+ (build-system linux-module-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (replace 'build
+ (lambda* (#:key inputs make-flags #:allow-other-keys)
+ (apply invoke "make"
+ (string-append "KSRC="
+ (assoc-ref inputs "linux-module-builder")
+ "/lib/modules/build")
+ (or make-flags '())))))
+ #:tests? #f)) ; no test suite
+ (supported-systems '("x86_64-linux" "i686-linux"))
+ (home-page "https://github.com/aircrack-ng/rtl8812au")
+ (synopsis "Linux driver for Realtek USB wireless network adapters")
+ (description
+ "This is Realtek's rtl8812au Linux driver for USB 802.11n wireless
+network adapters, modified by the aircrack-ng project to support monitor mode
+and frame injection. It provides a @code{88XXau} kernel module that supports
+RTL8812AU, RTL8821AU, and RTL8814AU chips.")
+ (license license:gpl2+))))
+
(define-public vhba-module
(package
(name "vhba-module")
- branch master updated (f468df9 -> d39885a), guix-commits, 2020/02/16
- 03/27: gnu: Remove blender@2.79b., guix-commits, 2020/02/16
- 01/27: gnu: Add rtl8812au-aircrack-ng-linux-module.,
guix-commits <=
- 06/27: gnu: boinc-client: Trim synopsis., guix-commits, 2020/02/16
- 02/27: gnu: blender: Update to 2.82., guix-commits, 2020/02/16
- 05/27: gnu: boinc-client: Update to 7.16.4., guix-commits, 2020/02/16
- 07/27: gnu: ddclient: Update to 3.9.1., guix-commits, 2020/02/16
- 09/27: gnu: camlp5: Update to 7.11., guix-commits, 2020/02/16
- 08/27: gnu: ddclient: Update home page., guix-commits, 2020/02/16
- 04/27: gnu: noise-repellent: Update to 0.1.5., guix-commits, 2020/02/16
- 11/27: gnu: lttoolbox: Remove redundant FILE-NAME., guix-commits, 2020/02/16
- 13/27: gnu: sbsigntools: Update to 0.9.3., guix-commits, 2020/02/16
- 14/27: gnu: fasm: Update to 1.73.22., guix-commits, 2020/02/16