diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-18 23:12:17 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:44:37 -0500 |
commit | 9e0dfe61e96556d9824e1583d17b13f1eda8300d (patch) | |
tree | 3e9f31a5ad0b2f4e62754958c909364562df422f /gnu/packages | |
parent | be04f73d09d584cb760f878c9b2364dd79db99a6 (diff) | |
download | guix-9e0dfe61e96556d9824e1583d17b13f1eda8300d.tar.gz |
gnu: atkmm: Add python to native inputs.
Since commit 5d20d7e1369fc7d93de19c0bd219937d697ceae6, meson no longer propagates Python. * gnu/packages/gtk.scm (atkmm)[native-inputs]: Add python.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gtk.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index dff09bf674..358b9c5d52 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1685,8 +1685,7 @@ library.") (mkdir-p (string-append doc "/share")) (rename-file (string-append out "/share/doc") - (string-append doc "/share/doc")) - #t)))))) + (string-append doc "/share/doc")))))))) (native-inputs `(("dot" ,graphviz) ("doxygen" ,doxygen) @@ -1694,6 +1693,7 @@ library.") ("mm-common" ,mm-common) ("perl" ,perl) ("pkg-config" ,pkg-config) + ("python" ,python) ("xsltproc" ,libxslt))) (propagated-inputs (list glibmm atk)) |