mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 19:19:20 -05:00
gnu: Add rfkill.
* gnu/packages/linux.scm (rfkill): New variable.
This commit is contained in:
parent
c037a0f7ce
commit
c755c85467
1 changed files with 27 additions and 0 deletions
|
@ -2084,6 +2084,33 @@ (define-public hdparm
|
|||
is for enabling irq-unmasking and IDE multiple-mode.")
|
||||
(license (non-copyleft "file://LICENSE.TXT"))))
|
||||
|
||||
(define-public rfkill
|
||||
(package
|
||||
(name "rfkill")
|
||||
(version "0.5")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://kernel.org/software/network/"
|
||||
name "/" name "-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0snqj5h0y991lszbigbyyqb8swj0hxajc1vfqg2scfay44231bp0"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags (list "CC=gcc"
|
||||
(string-append "PREFIX=" %output))
|
||||
#:phases (modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
#:tests? #f))
|
||||
(home-page "https://wireless.wiki.kernel.org/en/users/Documentation/rfkill")
|
||||
(synopsis "Tool for enabling and disabling wireless devices")
|
||||
(description
|
||||
"rfkill is a simple tool for accessing the rfkill device interface,
|
||||
which is used to enable and disable wireless networking devices, typically
|
||||
WLAN, Bluetooth and mobile broadband.")
|
||||
(license (non-copyleft "file://COPYING"
|
||||
"See COPYING in the distribution."))))
|
||||
|
||||
(define-public acpid
|
||||
(package
|
||||
(name "acpid")
|
||||
|
|
Loading…
Reference in a new issue