gnu: kconfig-hardened-check: Rename to kernel-hardening-checker.
* gnu/packages/linux.scm (kconfig-hardened-check): Rename to… (kernel-hardening-checker): …this. (kconfig-hardened-check): Define as deprecated. Change-Id: I01688d36ea6cf763f8ccc2a87a9162ebb4cbb16b
This commit is contained in:
parent
c4518b65ec
commit
0b76f6f640
1 changed files with 8 additions and 5 deletions
|
@ -10308,25 +10308,25 @@ text-based database (@file{$XDG_CONFIG_HOME/modprobed-db}), which can be read
|
||||||
directly by @code{make localmodconfig} as described above.")
|
directly by @code{make localmodconfig} as described above.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public kconfig-hardened-check
|
(define-public kernel-hardening-checker
|
||||||
(package
|
(package
|
||||||
(name "kconfig-hardened-check")
|
(name "kernel-hardening-checker")
|
||||||
(version "0.6.6")
|
(version "0.6.6")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/a13xp0p0v/kconfig-hardened-check")
|
(url "https://github.com/a13xp0p0v/kernel-hardening-checker")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1w9xx3xvx4wrfdkdwkfzjlfichgkvacil9b8s1fcgla63z65m5f6"))))
|
"1w9xx3xvx4wrfdkdwkfzjlfichgkvacil9b8s1fcgla63z65m5f6"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(home-page "https://github.com/a13xp0p0v/kconfig-hardened-check")
|
(home-page "https://github.com/a13xp0p0v/kernel-hardening-checker")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Tool for checking the security hardening options of the Linux kernel")
|
"Tool for checking the security hardening options of the Linux kernel")
|
||||||
(description
|
(description
|
||||||
"@code{kconfig-hardened-check} is a tool for checking the security
|
"@code{kernel-hardening-checker} is a tool for checking the security
|
||||||
hardening options of the Linux kernel. Provided preferences are based on
|
hardening options of the Linux kernel. Provided preferences are based on
|
||||||
suggestions from various sources, including:
|
suggestions from various sources, including:
|
||||||
|
|
||||||
|
@ -10340,6 +10340,9 @@ suggestions from various sources, including:
|
||||||
This tool supports checking Kconfig options and kernel cmdline parameters.")
|
This tool supports checking Kconfig options and kernel cmdline parameters.")
|
||||||
(license license:gpl3)))
|
(license license:gpl3)))
|
||||||
|
|
||||||
|
(define-public kconfig-hardened-check
|
||||||
|
(deprecated-package "kconfig-hardened-check" kernel-hardening-checker))
|
||||||
|
|
||||||
(define-public firejail
|
(define-public firejail
|
||||||
(package
|
(package
|
||||||
(name "firejail")
|
(name "firejail")
|
||||||
|
|
Reference in a new issue