summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-04-20 13:47:06 +0200
committerAndreas Enge <andreas@enge.fr>2026-04-20 13:47:07 +0200
commitbb27bc901c842a32d18bb1e6c9e5cf017381ebae (patch)
tree5670d13140470363a29e7f4f5ae7f96652edeaee /gnu
parent7619e82b35d926e2bd97b46a19b2ad9b9b5c7739 (diff)
gnu: Remove lkrg.
* gnu/packages/linux.scm (lkrg): Delete variable. Fixes: guix/guix#7335 Change-Id: Id303e1bc80a5be8b2ec125a2ff07859d9be72f01
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/linux.scm31
1 files changed, 0 insertions, 31 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index bb66df3e51..0910e6c689 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2822,37 +2822,6 @@ registers of the @acronym{EC, Embedded Controller} supported by the
@code{ec_sys} Linux driver.")
(license license:gpl2)))
-(define-public lkrg
- (package
- (name "lkrg")
- (version "0.9.7")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/lkrg-org/lkrg")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0k0z9caj48nqjwk3bapgfcdzi1lkizxcjj4r1dvkvwsk38mbk1c4"))))
- (build-system linux-module-build-system)
- (arguments
- (list #:linux linux-libre
- #:tests? #f
- #:make-flags #~(list (string-append "CC="
- #$(cc-for-target))
- (string-append "SYSSRC="
- (assoc-ref %build-inputs
- "linux-module-builder")
- "/lib/modules/build"))))
- (inputs (list bash-minimal))
- (home-page "https://lkrg.org/")
- (synopsis "Linux Kernel Runtime Guard")
- (description
- "This package performs runtime integrity checking of the Linux kernel and
-detection of security vulnerability exploits against the kernel.")
- (license license:gpl2)))
-
(define-public bbswitch-module
;; Use "develop" branch since stable release does not build on Linux >= 5.6.
;; See https://github.com/Bumblebee-Project/bbswitch/issues/205.