all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#61786] [PATCH] gnu: bqn: Add header files to lib output
@ 2023-02-25 11:54 aecepoglu
  2023-03-11 13:41 ` bug#61786: " 宋文武 via Guix-patches via
  0 siblings, 1 reply; 2+ messages in thread
From: aecepoglu @ 2023-02-25 11:54 UTC (permalink / raw)
  To: 61786; +Cc: aecepoglu

* gnu/packages/guix.scm (cbqn): Add include/bqnffi.h to lib output
---
 gnu/packages/bqn.scm | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/bqn.scm b/gnu/packages/bqn.scm
index 9b44ea7992..4d03385d21 100644
--- a/gnu/packages/bqn.scm
+++ b/gnu/packages/bqn.scm
@@ -193,11 +193,14 @@ (define-public cbqn
                 (let* ((bin (string-append (assoc-ref outputs "out")
                                            "/bin"))
                        (lib (string-append (assoc-ref outputs "lib")
-                                           "/lib")))
+                                           "/lib"))
+                       (include (string-append (assoc-ref outputs "lib")
+                                           "/include")))
                   (mkdir-p bin)
                   (rename-file "BQN" "bqn")
                   (install-file "bqn" bin)
-                  (install-file "libcbqn.so" lib))))))))
+                  (install-file "libcbqn.so" lib)
+                  (install-file "include/bqnffi.h" include))))))))
     (native-inputs (list dbqn
                          bqn-sources
                          libffi))
-- 
2.39.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#61786: [PATCH] gnu: bqn: Add header files to lib output
  2023-02-25 11:54 [bug#61786] [PATCH] gnu: bqn: Add header files to lib output aecepoglu
@ 2023-03-11 13:41 ` 宋文武 via Guix-patches via
  0 siblings, 0 replies; 2+ messages in thread
From: 宋文武 via Guix-patches via @ 2023-03-11 13:41 UTC (permalink / raw)
  To: aecepoglu; +Cc: 61786-done

aecepoglu <aecepoglu@fastmail.fm> writes:

> * gnu/packages/guix.scm (cbqn): Add include/bqnffi.h to lib output
Changed to gnu/packages/bqn.scm (cbqn): ...

Applied, thank you!




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-03-11 13:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-25 11:54 [bug#61786] [PATCH] gnu: bqn: Add header files to lib output aecepoglu
2023-03-11 13:41 ` bug#61786: " 宋文武 via Guix-patches via

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.