From: Ahriman via Guix-patches via <guix-patches@gnu.org>
To: 57497@debbugs.gnu.org
Cc: Ahriman <ahriman@fedora.email>
Subject: [bug#57497] [PATCH] gnu: Add blueprint-compiler
Date: Wed, 31 Aug 2022 19:18:49 +0100 [thread overview]
Message-ID: <20220831181845.19359-1-ahriman@fedora.email> (raw)
In-Reply-To: <20220831032115.3838-1-ahriman@fedora.email>
* gnu/packages/gnome.scm (blueprint-compiler): New variable.
---
It seems gtk was the only dependency missing. Or maybe im building all wrong.
gnu/packages/gnome.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 251d08ae01..042f009337 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3204,6 +3204,32 @@ (define-public glade3
(variable "GLADE_MODULE_SEARCH_PATH")
(files '("lib/glade/modules")))))))
+(define-public blueprint-compiler
+ (let ((commit "87cedc2c7e48b01dc1b07aef937e2fe02111b18c"))
+ (package
+ (name "blueprint-compiler")
+ (version "0.2.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://gitlab.gnome.org/jwestman/blueprint-compiler")
+ (commit commit)))
+ (file-name (string-append name "-" commit "-checkout"))
+ (sha256
+ (base32
+ "1mrj5dyjf5d325yc28fpph588qfsz6bm2nx5nnsgcv02bagplxid"))))
+ (build-system meson-build-system)
+ (native-inputs (list
+ gobject-introspection
+ gtk))
+ (inputs (list python))
+ (synopsis "Template markup language")
+ (description
+ "Blueprint is a markup language for GTK user interfaces. Internally, it
+compiles to GTKBuilder XML.")
+ (home-page "https://gitlab.gnome.org/jwestman/blueprint-compiler")
+ (license license:lgpl3+))))
+
(define-public cambalache
(package
(name "cambalache")
--
2.37.2
next prev parent reply other threads:[~2022-08-31 20:01 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-31 3:21 [bug#57497] [PATCH] gnu: Add blueprint-compiler Ahriman via Guix-patches via
2022-08-31 14:42 ` Liliana Marie Prikler
2022-08-31 18:18 ` Ahriman via Guix-patches via [this message]
2022-09-06 14:46 ` bug#57497: " Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220831181845.19359-1-ahriman@fedora.email \
--to=guix-patches@gnu.org \
--cc=57497@debbugs.gnu.org \
--cc=ahriman@fedora.email \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.