From 988c3333e13dff9286d8e8a281059e88b77af9d1 Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 13 Dec 2022 10:38:11 +0100 Subject: [PATCH 4/5] gnu: Add gxlimg. * gnu/packages/firmware.scm (gxlimg): New variable. diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 764d4e2a88..d42340f061 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -338,6 +338,29 @@ (define-public fwupd automatic, safe and reliable. It is used by tools such as GNOME Software.") (license license:lgpl2.1+))) +(define-public gxlimg +(let ((commit "15be56b1f1e2a319227d599a0b7afb0673e9cb9b") + (revision "1")) + (package + (name "gxlimg") + (version "1.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/repk/gxlimg") + (commit commit))) + (sha256 + (base32 + "0h96834i27sfzn7nvmqk0rwzxk5axiq9mm6ql3yaz81qd8slpljv")))) + (build-system meson-build-system) + (inputs (list openssl)) + (native-inputs (list pkg-config)) + (home-page "https://github.com/repk/gxlimg") + (synopsis "Boot Image creation tool for amlogic s905x") + (description "@code{Gxlimg} is an amlogic s905x boot image creation +tools.") + (license license:bsd-2)))) + (define-public openfwwf-firmware (package (name "openfwwf-firmware") -- 2.38.1