mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: Fix builds that require old blueprint-compiler.
This is a follow-up commit to cee21ef865
and
fixes two builds that rely on an older version of blueprint-compiler.
The giara package remains broken as a result of a test failure.
* gnu/packages/gnome.scm (blueprint-compiler-0.4): New variable.
* gnu/packages/syndication.scm (giara, gfeeds): Replace blueprint-compiler
with blueprint-compiler-0.4.
* gnu/packages/text-editors.scm (textpieces): Likewise
This commit is contained in:
parent
80d364b92b
commit
08de161274
3 changed files with 19 additions and 3 deletions
|
@ -3320,6 +3320,22 @@ (define-public blueprint-compiler
|
|||
(home-page "https://gitlab.gnome.org/jwestman/blueprint-compiler")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public blueprint-compiler-0.4
|
||||
(package
|
||||
(inherit blueprint-compiler)
|
||||
(name "blueprint-compiler")
|
||||
(version "0.4.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url
|
||||
"https://gitlab.gnome.org/jwestman/blueprint-compiler")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"0hj7f4xhwjc4x32r3lswwclbw37fw3spy806g4plkmym25hz4ydy"))))))
|
||||
|
||||
(define-public cambalache
|
||||
(package
|
||||
(name "cambalache")
|
||||
|
|
|
@ -201,7 +201,7 @@ (define-public giara
|
|||
(list gtk "bin")
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list blueprint-compiler
|
||||
(list blueprint-compiler-0.4
|
||||
glib
|
||||
gtk
|
||||
gtksourceview
|
||||
|
@ -569,7 +569,7 @@ (define-public gfeeds
|
|||
`("XDG_DATA_DIRS" ":" prefix (,(getenv "XDG_DATA_DIRS")))))))))
|
||||
(native-inputs
|
||||
(list `(,glib "bin")
|
||||
blueprint-compiler
|
||||
blueprint-compiler-0.4
|
||||
gobject-introspection
|
||||
gettext-minimal
|
||||
pkg-config))
|
||||
|
|
|
@ -1065,7 +1065,7 @@ (define-public textpieces
|
|||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(list appstream-glib
|
||||
blueprint-compiler
|
||||
blueprint-compiler-0.4
|
||||
desktop-file-utils
|
||||
gettext-minimal
|
||||
`(,glib "bin")
|
||||
|
|
Loading…
Reference in a new issue