guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/03: gnu: Add glibmm-next.


From: guix-commits
Subject: 02/03: gnu: Add glibmm-next.
Date: Sun, 28 May 2023 07:22:51 -0400 (EDT)

jonsger pushed a commit to branch master
in repository guix.

commit 10ac7c9ab5207a8b97f65efe71b36d0c565e9b21
Author: Saku Laesvuori <saku@laesvuori.fi>
AuthorDate: Thu May 25 22:12:03 2023 +0300

    gnu: Add glibmm-next.
    
    * gnu/packages/glib.scm (glibmm-next): New variable.
    
    Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
---
 gnu/packages/glib.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 1f3d3ef628..dcc45e3310 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2020 Arthur Margerit <ruhtra.mar@gmail.com>
 ;;; Copyright © 2021 Maxime Devos <maximedevos@telenet.be>
 ;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
+;;; Copyright © 2023 Saku Laesvuori <saku@laesvuori.fi>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -913,6 +914,23 @@ libraries.")
 useful for C++.")
     (license license:lgpl2.1+)))
 
+(define-public glibmm-next
+  (package
+   (inherit glibmm)
+   (version "2.76.0")
+   (name "glibmm")
+   (source (origin
+            (method url-fetch)
+            (uri (string-append "mirror://gnome/sources/glibmm/"
+                                (version-major+minor version)
+                                "/glibmm-" version ".tar.xz"))
+            (sha256
+             (base32
+              "1cia8vrpwzn8zwalws42mga5hi965840m5s8dvfzv55xx86dhdw6"))))
+   (propagated-inputs
+    (modify-inputs (package-propagated-inputs glibmm)
+      (replace "glib" glib-next)))))
+
  (define-public glibmm-2.64
    (package
     (inherit glibmm)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]