GNU bug report logs -
#57497
[PATCH] gnu: Add blueprint-compiler
Previous Next
Reported by: Ahriman <ahriman <at> fedora.email>
Date: Wed, 31 Aug 2022 06:51:02 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
---
gnu/packages/blueprint-compiler.scm | 35 +++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
create mode 100644 gnu/packages/blueprint-compiler.scm
diff --git a/gnu/packages/blueprint-compiler.scm b/gnu/packages/blueprint-compiler.scm
new file mode 100644
index 0000000000..299f0b3635
--- /dev/null
+++ b/gnu/packages/blueprint-compiler.scm
@@ -0,0 +1,35 @@
+(define-module (gnu packages blueprint-compiler)
+ #:use-module (guix packages)
+ #:use-module (guix licenses)
+ #:use-module (guix download)
+ #:use-module (gnu packages python)
+ #:use-module (gnu packages glib)
+ #:use-module (guix build-system meson))
+
+(define-public blueprint-compiler
+ (package
+ (name "blueprint-compiler")
+ (version "0.2.0")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://gitlab.gnome.org/jwestman/blueprint-compiler/-/archive/v"
+ version
+ "/blueprint-compiler-v"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "10qd9bax2n83n0pmmsbb55rjdsm7g5pvj2lxh460dl78jm649rfl"))))
+ (build-system meson-build-system)
+ (arguments `(#:tests? #f))
+ (native-inputs (list gobject-introspection))
+ (inputs (list python))
+ (synopsis "Markup language compiler for GTK user interface files")
+ (description
+ "This package provides the compiler for the blueprint markup language for
+GTK user interfaces")
+ (home-page "https://gitlab.gnome.org/jwestman/blueprint-compiler")
+ (license gpl3+)))
+
+blueprint-compiler
--
2.37.2
This bug report was last modified 2 years and 282 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.