[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/24: gnu: Add lock.
From: |
guix-commits |
Subject: |
03/24: gnu: Add lock. |
Date: |
Fri, 22 Nov 2024 04:14:12 -0500 (EST) |
lilyp pushed a commit to branch gnome-team
in repository guix.
commit f131eca65d45af710923514e47aca93c97effecd
Author: Liliana Marie Prikler <liliana.prikler@gmail.com>
AuthorDate: Tue Oct 29 10:37:10 2024 +0100
gnu: Add lock.
* gnu/packages/gnome.scm (lock): New variable.
---
gnu/packages/gnome.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index daf40ae55a..210f426735 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -14268,3 +14268,40 @@ Protocol} for @acronym{VoIP, Voice over @acronym{IP,
Internet Protocol}}.")
real or virtual machines, using @acronym{VNC, Virtual Network Computing}
or @acronym{RDP, Remote Desktop Protocol}.")
(license license:gpl3+)))
+
+(define-public lock
+ (package
+ (name "lock")
+ (version "1.0.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/konstantintutsch/Lock")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
"1sq7mk4j3jzs1gzzql938d58gvrz6cp0ingzaxilffdpbpvj4fn3"))))
+ (build-system meson-build-system)
+ (arguments
+ (list
+ #:meson meson-1.5
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-gtk-update-icon-cache
+ (lambda _
+ (substitute* "meson.build"
+ (("(gtk_update_icon_cache|update_desktop_database): true" _
key)
+ (string-append key ": false"))))))))
+ (inputs (list gpgme-1.23
+ glib
+ libadwaita))
+ (native-inputs (list blueprint-compiler
+ gettext-minimal
+ gobject-introspection
+ `(,glib "bin")
+ pkg-config))
+ (home-page "https://konstantintutsch.com/Lock")
+ (synopsis "Graphical front-end for GNU Privacy Guard")
+ (description "This package provides a graphical frontend for
+GNU Privacy Guard built with libadwaita.")
+ (license license:expat)))
- branch gnome-team updated (f8d910f5c0 -> 6778d6f460), guix-commits, 2024/11/22
- 03/24: gnu: Add lock.,
guix-commits <=
- 04/24: gnu: glib: Fix build., guix-commits, 2024/11/22
- 01/24: gnu: blueprint-compiler: Fix build., guix-commits, 2024/11/22
- 05/24: gnu: glib-minimal: Fix deprecation warning., guix-commits, 2024/11/22
- 07/24: gnu: gstreamer: Update to 1.24.9., guix-commits, 2024/11/22
- 09/24: gnu: gst-plugins-good: Update to 1.24.9., guix-commits, 2024/11/22
- 08/24: gnu: gst-plugins-base: Update to 1.24.9., guix-commits, 2024/11/22
- 13/24: gnu: gst-editing-services: Update to 1.24.9., guix-commits, 2024/11/22
- 14/24: gnu: python-gst: Update to 1.24.9., guix-commits, 2024/11/22
- 17/24: gnu: gnome-vfs: Remove trailing #t., guix-commits, 2024/11/22
- 18/24: gnu: mjpegtools: Remove gtk+-2 input., guix-commits, 2024/11/22