guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

50/51: gnu: rednotebook: Add 'bash' input for 'wrap-program'.


From: guix-commits
Subject: 50/51: gnu: rednotebook: Add 'bash' input for 'wrap-program'.
Date: Sat, 21 Oct 2023 15:19:35 -0400 (EDT)

apteryx pushed a commit to branch core-updates
in repository guix.

commit 1d08242a22ed72730e67625669bdf22fea8f5ae9
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Fri Jul 2 12:13:23 2021 +0200

    gnu: rednotebook: Add 'bash' input for 'wrap-program'.
    
    It is required for cross-compilation.
    
    * gnu/packages/rednotebook.scm (rednotebook)[inputs]: Add 'bash-minimal'.
    
    Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
    Change-Id: I95d596403bd603df2ef48145bc87f783625b11cf
---
 gnu/packages/rednotebook.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/rednotebook.scm b/gnu/packages/rednotebook.scm
index f63104ad32..00bb50cfb9 100644
--- a/gnu/packages/rednotebook.scm
+++ b/gnu/packages/rednotebook.scm
@@ -22,6 +22,7 @@
   #:use-module (guix git-download)
   #:use-module (guix build-system python)
   #:use-module ((guix licenses) #:prefix license:)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages python)
   #:use-module (gnu packages glib)
   #:use-module (gnu packages gtk)
@@ -68,10 +69,14 @@
                                     "/lib")))
                (wrap-program (string-append out "/bin/rednotebook")
                  `("GI_TYPELIB_PATH" ":" prefix (,gi-typelib-path))
-                 `("LD_LIBRARY_PATH" ":" prefix (,webkitgtk-path)))
-               #t))))))
+                 `("LD_LIBRARY_PATH" ":" prefix (,webkitgtk-path)))))))))
     (inputs
-     (list gtk+ gtksourceview-3 python-pyyaml python-pygobject webkitgtk))
+     (list bash-minimal
+           gtk+
+           gtksourceview-3
+           python-pyyaml
+           python-pygobject
+           webkitgtk))
     ;; TODO: package the following for python3 (if possible), add them as
     ;; dependencies, and remove them from rednotebook source:
     ;; pygtkspellcheck, elib.intl, msgfmt, txt2tags



reply via email to

[Prev in Thread] Current Thread [Next in Thread]