apteryx pushed a commit to branch master
in repository guix.

commit 1a2d6e7c76589900774b000bf0b1585e681dd73e
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Wed Apr 23 17:08:07 2025 +0900

    gnu: Add libmegapixels.
    
    * gnu/packages/gnome-xyz.scm (libmegapixels): New variable.
    
    Change-Id: Id2e5c921a35611d053704b394baf4f747f6d23e8
---
 gnu/packages/gnome-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm
index d2483468ab..c003f49338 100644
--- a/gnu/packages/gnome-xyz.scm
+++ b/gnu/packages/gnome-xyz.scm
@@ -23,6 +23,7 @@
 ;;; Copyright © 2023 Eidvilas Markevičius <[email protected]>
 ;;; Copyright © 2025 aurtzy <[email protected]>
 ;;; Copyright © 2025 Ashvith Shetty <[email protected]>
+;;; Copyright © 2025 Maxim Cournoyer <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -73,6 +74,7 @@
   #:use-module (gnu packages python)
   #:use-module (gnu packages python-xyz)
   #:use-module (gnu packages ssh)
+  #:use-module (gnu packages textutils)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages ruby)
   #:use-module (gnu packages web)
@@ -1545,6 +1547,28 @@ variants.")
                    license:lgpl2.1         ; Some style sheets.
                    license:cc-by-sa4.0)))) ; Some icons
 
+(define-public libmegapixels
+  (package
+    (name "libmegapixels")
+    (version "0.2.1")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://gitlab.com/megapixels-org/libmegapixels";)
+                    (commit version)))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "06q6igyf5m6nd75jlihvr6f5hf0q2b2vb2dcjw91f65c6db5q9jk"))))
+    (build-system meson-build-system)
+    (native-inputs (list pkg-config))
+    (inputs (list libconfig))
+    (home-page "https://gitlab.com/megapixels-org/libmegapixels";)
+    (synopsis "Library for the Megapixels application")
+    (description "This package provides a device abstraction library for the
+Megapixels application.")
+    (license license:gpl3+)))
+
 (define-public postmarketos-theme
   (package
     (name "postmarketos-theme")

Reply via email to