mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-12-23 15:24:52 +01:00
nongnu: Add i915-firmware.
* nongnu/packages/linux.scm (i915-firmware): New variable. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
a1017826c7
commit
a952c73019
1 changed files with 21 additions and 0 deletions
|
@ -8,6 +8,7 @@
|
||||||
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2021 Risto Stevcev <me@risto.codes>
|
;;; Copyright © 2021 Risto Stevcev <me@risto.codes>
|
||||||
;;; Copyright © 2021 aerique <aerique@xs4all.nl>
|
;;; Copyright © 2021 aerique <aerique@xs4all.nl>
|
||||||
|
;;; Copyright © 2022 Josselin Poiret <dev@jpoiret.xyz>
|
||||||
;;;
|
;;;
|
||||||
;;; This program is free software: you can redistribute it and/or modify
|
;;; This program is free software: you can redistribute it and/or modify
|
||||||
;;; it under the terms of the GNU General Public License as published by
|
;;; it under the terms of the GNU General Public License as published by
|
||||||
|
@ -418,6 +419,26 @@ support for 5GHz and 802.11ac, among others.")
|
||||||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||||||
"/linux-firmware.git/plain/LICENCE.iwlwifi_firmware")))))
|
"/linux-firmware.git/plain/LICENCE.iwlwifi_firmware")))))
|
||||||
|
|
||||||
|
(define-public i915-firmware
|
||||||
|
(package
|
||||||
|
(inherit linux-firmware)
|
||||||
|
(name "i915-firmware")
|
||||||
|
(arguments
|
||||||
|
`(#:license-file-regexp "LICENCE.i915"
|
||||||
|
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||||||
|
((#:phases phases)
|
||||||
|
`(modify-phases ,phases
|
||||||
|
(add-after 'unpack 'select-firmware
|
||||||
|
,(select-firmware "^i915/")))))))
|
||||||
|
(home-page "https://01.org/linuxgraphics/gfx-docs/drm/gpu/i915.html")
|
||||||
|
(synopsis "Nonfree firmware for Intel integrated graphics")
|
||||||
|
(description "This package contains the various firmware for Intel
|
||||||
|
integrated graphics chipsets, including GuC, HuC and DMC.")
|
||||||
|
(license
|
||||||
|
(nonfree (string-append
|
||||||
|
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||||||
|
"/linux-firmware.git/plain/LICENCE.i915")))))
|
||||||
|
|
||||||
(define-public realtek-firmware
|
(define-public realtek-firmware
|
||||||
(package
|
(package
|
||||||
(inherit linux-firmware)
|
(inherit linux-firmware)
|
||||||
|
|
Loading…
Reference in a new issue