diff options
author | Liliana Marie Prikler <[email protected]> | 2024-12-28 20:22:21 +0100 |
---|---|---|
committer | Liliana Marie Prikler <[email protected]> | 2025-03-02 20:31:40 +0100 |
commit | 55cb7efcfdb6e9c4697f34cb7ad5b757dbb9dbcf (patch) | |
tree | 49c58801f09db4a3c001d780e6353fdceaef7cb8 /gnu | |
parent | 4d0764ec9e44aa0360ee509d0e6c5d5fbb79d74c (diff) |
gnu: Add libpeas-2.
* gnu/packages/gnome.scm (libpeas-2): New variable.
Reviewed-by: Maxim Cournoyer <[email protected]>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gnome.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index de7a266635..9aabec088b 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3237,6 +3237,33 @@ features including, but not limited to: multiple extension points; on-demand API.") (license license:lgpl2.0+))) +(define-public libpeas-2 + (package + (inherit libpeas) + (name "libpeas") + (version "2.0.5") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1pg6km41bp9ayr6z9pi40nc6mkw2ccdxkcdsvl9lxd9isxrjyvrp")))) + (arguments + (substitute-keyword-arguments (package-arguments libpeas) + ((#:configure-flags flags #~(list)) + #~(cons* "-Dlua51=false" #$flags)))) + (inputs + (list gtk + gjs + glade3 + ;; lua-5.1 + ;; lua5.1-lgi + python + python-pygobject)))) + (define-public gtkglext (package (name "gtkglext") |