diff options
| author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-10-29 10:37:10 +0100 |
|---|---|---|
| committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2025-03-02 20:31:34 +0100 |
| commit | be22bf20970c3a4f369a86f375f47a3dc7019403 (patch) | |
| tree | 876d0bd3ef6b74f420a6623f3fbfd19049c94908 | |
| parent | 22110be5f9cb900294f53ad283295ce276251bd0 (diff) | |
gnu: Add lock.
* gnu/packages/gnome.scm (lock): New variable.
| -rw-r--r-- | gnu/packages/gnome.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f631188ceaa..e850903a554 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -14463,3 +14463,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))) |
