[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#61427] [PATCH 2/6] gnu: Add libpanel.
From: |
Maya Tomasek |
Subject: |
[bug#61427] [PATCH 2/6] gnu: Add libpanel. |
Date: |
Sat, 11 Feb 2023 11:35:33 +0100 |
From: Antero Mejr <antero@mailbox.org>
* gnu/packages/gtk.scm (libpanel): New variable.
---
gnu/packages/gtk.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index f575194c73..fa099fe862 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -3039,3 +3039,38 @@ (define-public webp-pixbuf-loader
(synopsis "WebP GdkPixbuf loader library")
(description "Webp-pixbuf-loader is a WebP format loader of GdkPixbuf.")
(license license:lgpl2.0+)))
+
+(define-public libpanel
+ (package
+ (name "libpanel")
+ (version "1.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.gnome.org/GNOME/libpanel")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "10lkysbwg9w0lm1hj7lw4g7y9j8b88kmq07nfgx0r6f319znj12v"))))
+ (build-system meson-build-system)
+ (arguments
+ (list #:configure-flags #~(list "-Ddocs=disabled") ;fontconfig issue
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'disable-gtk-update-icon-cache
+ (lambda _
+ (substitute* "meson.build"
+ (("gtk_update_icon_cache: true")
+ "gtk_update_icon_cache: false")))))))
+ (native-inputs (list `(,glib-next "bin")
+ gobject-introspection
+ pkg-config
+ vala))
+ (inputs (list glib-next gtk libadwaita))
+ (home-page "https://gitlab.gnome.org/GNOME/libpanel")
+ (synopsis "Dock and panel library for GTK 4")
+ (description "Libpanel provides a library to create IDE-like applications
+using GTK 4 and @code{libadwaita}. It has widgets for panels, docks, columns
+and grids of pages. Primarily, it's design and implementation focus around
+GNOME Builder and Drafting projects.")
+ (license license:lgpl3)))
--
2.39.1
- [bug#61423] [PATCH 0/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62, Maya Tomasek, 2023/02/11
- [bug#61424] [PATCH 1/6] gnu: zrythm: Update to 1.0.0-beta.4.5.1., Maya Tomasek, 2023/02/11
- [bug#61425] [PATCH 4/6] gnu: carla: Update to 2.6.0 pre-release., Maya Tomasek, 2023/02/11
- [bug#61426] [PATCH 3/6] gnu: Add zix., Maya Tomasek, 2023/02/11
- [bug#61428] [PATCH 5/6] gnu: libaudec: Update to 0.3.4., Maya Tomasek, 2023/02/11
- [bug#61427] [PATCH 2/6] gnu: Add libpanel.,
Maya Tomasek <=
- [bug#61429] [PATCH 6/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 1/6] gnu: zrythm: Update to 1.0.0-beta.4.5.1., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 3/6] gnu: Add zix., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 2/6] gnu: Add libpanel., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 4/6] gnu: carla: Update to 2.6.0 pre-release., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 6/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 5/6] gnu: libaudec: Update to 0.3.4., Maya Tomasek, 2023/02/11
- [bug#61423] [PATCH 0/6] gnu: zrythm: Update to 1.0.0-beta.4.5.62, Alexandros Theodotou, 2023/02/24