diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-23 17:08:07 +0900 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2025-04-23 17:27:42 +0900 |
commit | 1a2d6e7c76589900774b000bf0b1585e681dd73e (patch) | |
tree | 0b9e49ef6ac1d0cad1fc1bc7ae7887214ae819f1 | |
parent | 238ce45f1310f5b8e12092d013584a0990f21a4e (diff) | |
download | guix-1a2d6e7c76589900774b000bf0b1585e681dd73e.tar.gz guix-1a2d6e7c76589900774b000bf0b1585e681dd73e.zip |
gnu: Add libmegapixels.
* gnu/packages/gnome-xyz.scm (libmegapixels): New variable.
Change-Id: Id2e5c921a35611d053704b394baf4f747f6d23e8
-rw-r--r-- | gnu/packages/gnome-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
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 <markeviciuseidvilas@gmail.com> ;;; Copyright © 2025 aurtzy <aurtzy@gmail.com> ;;; Copyright © 2025 Ashvith Shetty <ashvithshetty0010@zohomail.in> +;;; Copyright © 2025 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; ;;; 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") |