;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Leo Famulari ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . ;;; This file returns a manifest of packages related to linux-libre. ;;; Simplistically, it selects packages whose names begin with "linux-libre". ;;; It is used to assist continuous integration of the kernel packages. (use-modules (guix packages) (guix profiles) (gnu packages)) (manifest (map package->manifest-entry (fold-packages (lambda (package lst) (if (string-prefix? "linux-libre" (package-name package)) (cons package lst) lst)) '()))) e46f3d949617fd'>commitdiff
diff options
context:
space:
mode:
authorMathieu Othacehe <othacehe@gnu.org>2022-06-20 12:14:15 +0200
committerMathieu Othacehe <othacehe@gnu.org>2022-06-20 12:14:36 +0200
commita6928240063e43e85a6b27e4d8e46f3d949617fd (patch)
treed0202be635c0c6df068ab94dfd3050dcec975c31
parent38d7e6d6b7467839c2f577783b6c97194ff5026b (diff)
downloadguix-a6928240063e43e85a6b27e4d8e46f3d949617fd.tar.gz
guix-a6928240063e43e85a6b27e4d8e46f3d949617fd.zip
gnu: xdg-desktop-portal-gtk: Update to 1.14.0.
* gnu/packages/freedesktop.scm (xdg-desktop-portal-gtk): Update to 1.14.0.
-rw-r--r--gnu/packages/freedesktop.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm
index c8f6ee1e62..29bb7c1664 100644
--- a/gnu/packages/freedesktop.scm
+++ b/gnu/packages/freedesktop.scm
@@ -2306,7 +2306,7 @@ and others.")
(define-public xdg-desktop-portal-gtk
(package
(name "xdg-desktop-portal-gtk")
- (version "1.10.0")
+ (version "1.14.0")
(source (origin
(method url-fetch)
(uri (string-append
@@ -2314,7 +2314,7 @@ and others.")
version "/xdg-desktop-portal-gtk-" version ".tar.xz"))
(sha256
(base32
- "0nlbnd6qvs92fanrmmn123vy0y2ml0v3ndxyk5x0cpfbnmxpa2f8"))))
+ "0m29b4hm7lq06gcavxw7gdlgqiiy3vgv3v4yjqfq5kx92q3j28gn"))))
(build-system glib-or-gtk-build-system)
(arguments
`(#:phases