mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-23 08:58:08 +01:00
nongnu: rtlwifi-firmware: Use gnu-build-system.
* nongnu/packages/linux.scm (rtlwifi-firmware): Use gnu-build-system.
This commit is contained in:
parent
1a7fdfe34d
commit
352d9d9741
1 changed files with 14 additions and 17 deletions
|
@ -391,24 +391,21 @@ chipsets from Broadcom:
|
||||||
(package
|
(package
|
||||||
(inherit linux-firmware)
|
(inherit linux-firmware)
|
||||||
(name "rtlwifi-firmware")
|
(name "rtlwifi-firmware")
|
||||||
(build-system trivial-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils))
|
`(#:tests? #f
|
||||||
#:builder
|
#:license-file-regexp "LICENCE.rtlwifi_firmware.txt"
|
||||||
(begin
|
#:phases
|
||||||
(use-modules (guix build utils))
|
(modify-phases %standard-phases
|
||||||
(let* ((source (assoc-ref %build-inputs "source"))
|
(replace 'install
|
||||||
(fw-dir (string-append %output "/lib/firmware/"))
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(bin-dir (string-append fw-dir "/rtlwifi"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
(gzip (assoc-ref %build-inputs "gzip"))
|
(fw-dir (string-append out "/lib/firmware"))
|
||||||
(tar (assoc-ref %build-inputs "tar")))
|
(bin-dir (string-append fw-dir "/rtlwifi")))
|
||||||
(set-path-environment-variable "PATH" '("bin")
|
|
||||||
(list tar gzip))
|
|
||||||
(invoke "tar" "--strip-components=1" "-xvf" source)
|
|
||||||
(mkdir-p bin-dir)
|
(mkdir-p bin-dir)
|
||||||
(copy-recursively "./rtlwifi" bin-dir)
|
(copy-recursively "./rtlwifi" bin-dir)
|
||||||
(install-file "./LICENCE.rtlwifi_firmware.txt" fw-dir)
|
#t)))
|
||||||
#t))))
|
(delete 'validate-runpath))))
|
||||||
(home-page "https://wireless.wiki.kernel.org/en/users/drivers/rtl819x")
|
(home-page "https://wireless.wiki.kernel.org/en/users/drivers/rtl819x")
|
||||||
(synopsis "Nonfree firmware for Realtek wifi chips")
|
(synopsis "Nonfree firmware for Realtek wifi chips")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue