diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-04-07 10:54:21 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-04-07 11:18:23 +0200 |
commit | 08de1612748c58ace7b77deb5859ac9bb89dd2b2 (patch) | |
tree | 7e467c4d46d27aa1c5436f76bc30f473795dbefa /gnu/packages/syndication.scm | |
parent | 80d364b92b73e6757f2c9a703582519655bb4f5c (diff) |
gnu: Fix builds that require old blueprint-compiler.
This is a follow-up commit to cee21ef8650d723e9e1ea4c6313897fd3bf64112 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
Diffstat (limited to 'gnu/packages/syndication.scm')
-rw-r--r-- | gnu/packages/syndication.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/syndication.scm b/gnu/packages/syndication.scm index 7d9a27bbc3..18d3df5b6e 100644 --- a/gnu/packages/syndication.scm +++ b/gnu/packages/syndication.scm @@ -201,7 +201,7 @@ cards.") (list gtk "bin") pkg-config)) (inputs - (list blueprint-compiler + (list blueprint-compiler-0.4 glib gtk gtksourceview @@ -569,7 +569,7 @@ parser. It is \"not fit for use at this point\", but gfeeds uses it anyway.") `("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)) |