lilyp pushed a commit to branch gnome-team
in repository guix.
commit 5c4f997510e03a5ef60c1e7c330689a866376fc1
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Tue Oct 29 10:37:10 2024 +0100
gnu: Add lock.
* gnu/packages/gnome.scm (lock): New variable.
---
gnu/packages/gnome.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 3509b72e56..a8d59ed606 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -14459,3 +14459,39 @@ you to mark favorite talks and highlights conflicts
between favorited talks.")
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
+ #: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
+ 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)))