mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add eg25-manager.
* gnu/packages/firmware.scm (eg25-manager): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
6a887e4909
commit
6cb805dcce
1 changed files with 35 additions and 1 deletions
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
|
;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
|
||||||
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
|
||||||
|
;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -30,18 +31,24 @@
|
||||||
#:use-module (guix utils)
|
#:use-module (guix utils)
|
||||||
#:use-module (guix git-download)
|
#:use-module (guix git-download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
|
#:use-module (guix build-system meson)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module (gnu packages admin)
|
#:use-module (gnu packages admin)
|
||||||
#:use-module (gnu packages assembly)
|
#:use-module (gnu packages assembly)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages cmake)
|
#:use-module (gnu packages cmake)
|
||||||
|
#:use-module (gnu packages curl)
|
||||||
#:use-module (gnu packages cross-base)
|
#:use-module (gnu packages cross-base)
|
||||||
#:use-module (gnu packages flex)
|
#:use-module (gnu packages flex)
|
||||||
#:use-module (gnu packages gcc)
|
#:use-module (gnu packages gcc)
|
||||||
|
#:use-module (gnu packages glib)
|
||||||
|
#:use-module (gnu packages gnome)
|
||||||
|
#:use-module (gnu packages libusb)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages perl)
|
#:use-module (gnu packages perl)
|
||||||
#:use-module (gnu packages python))
|
#:use-module (gnu packages python)
|
||||||
|
#:use-module (gnu packages pkg-config))
|
||||||
|
|
||||||
(define-public ath9k-htc-firmware
|
(define-public ath9k-htc-firmware
|
||||||
(package
|
(package
|
||||||
|
@ -190,6 +197,33 @@ Broadcom/AirForce chipset BCM43xx with Wireless-Core Revision 5. It is used
|
||||||
by the b43-open driver of Linux-libre.")
|
by the b43-open driver of Linux-libre.")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public eg25-manager
|
||||||
|
(package
|
||||||
|
(name "eg25-manager")
|
||||||
|
(version "0.4.1")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://gitlab.com/mobian1/devices/eg25-manager")
|
||||||
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1h4c4ndcnh88jn65h1kycxkjrydwwwh3irkxvpaxb6ry4wpc45r0"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(native-inputs `(("curl" ,curl)
|
||||||
|
("glib" ,glib "bin")
|
||||||
|
("pkg-config" ,pkg-config)))
|
||||||
|
(inputs `(("libgpiod" ,libgpiod)
|
||||||
|
("libgudev" ,libgudev)
|
||||||
|
("libusb" ,libusb)))
|
||||||
|
(synopsis "Manager daemon for the Quectel EG25 mobile broadband modem")
|
||||||
|
(description
|
||||||
|
"This package provides a manager daemon for the Quectel EG25 mobile
|
||||||
|
broadband modem as found, for example, on PinePhone.")
|
||||||
|
(home-page "https://gitlab.com/mobian1/devices/eg25-manager")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define* (make-opensbi-package platform name #:optional (arch "riscv64"))
|
(define* (make-opensbi-package platform name #:optional (arch "riscv64"))
|
||||||
(package
|
(package
|
||||||
(name name)
|
(name name)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue