From 7d9da8246fe6365a22a6fcb980312363e74af7c1 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Mon, 19 Dec 2022 14:50:22 +0100 Subject: nongnu: Add rtl8812au-aircrack-ng-linux-module. * nongnu/packages/linux.scm (rtl8812au-aircrack-ng-linux-module): New variable. Signed-off-by: Jonathan Brielmaier --- nongnu/packages/linux.scm | 41 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 39 insertions(+), 2 deletions(-) diff --git a/nongnu/packages/linux.scm b/nongnu/packages/linux.scm index 5a9de8e..94db6d0 100644 --- a/nongnu/packages/linux.scm +++ b/nongnu/packages/linux.scm @@ -5,8 +5,8 @@ ;;; Copyright © 2019 Timotej Lazar ;;; Copyright © 2020, 2021 James Smith ;;; Copyright © 2020, 2021, 2022 Jonathan Brielmaier -;;; Copyright © 2020 Michael Rohleder -;;; Copyright © 2020, 2021 Tobias Geerinckx-Rice +;;; Copyright © 2020, 2022 Michael Rohleder +;;; Copyright © 2020, 2021, 2022 Tobias Geerinckx-Rice ;;; Copyright © 2020, 2021, 2022 Zhu Zihao ;;; Copyright © 2021 Mathieu Othacehe ;;; Copyright © 2021 Brice Waegeneire @@ -17,6 +17,7 @@ ;;; Copyright © 2022 Petr Hodina ;;; Copyright © 2022 Remco van 't Veer ;;; Copyright © 2022 Simen Endsjø +;;; Copyright © 2022 Leo Famulari (define-module (nongnu packages linux) #:use-module (gnu packages) @@ -629,6 +630,42 @@ network adapters.") ;; hal/rtl8821c/hal8821c_fw.c (license gpl2)))) +(define-public rtl8812au-aircrack-ng-linux-module + (let ((commit "450db78f7bd23f0c611553eb475fa5b5731d6497") + (revision "9")) + (package + (inherit rtl8821ce-linux-module) + (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") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1f11v315bfrm5a8v17vamh6m2x22ib1p7kwpnw7aj9qvfyznhdzl")) + (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")))))) + (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.") + ;; Rejected by Guix beause it contains a binary blob in: + ;; hal/rtl8812a/hal8812a_fw.c + (license gpl2+)))) + (define broadcom-sta-version "6.30.223.271") (define broadcom-sta-x86_64-source -- cgit v1.2.3