mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-05-03 15:43:06 +02:00
reformatting and cleaning repo
This commit is contained in:
parent
263fc568f0
commit
dd9a55f327
42 changed files with 10407 additions and 11840 deletions
|
@ -1,32 +1,20 @@
|
|||
(define-module (glicid packages cpp))
|
||||
|
||||
(use-modules (guix packages) (gnu packages cpp))
|
||||
|
||||
(define-module (glicid packages cpp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (gnu packages cpp)
|
||||
)
|
||||
|
||||
(define-public reproc-with-cpp
|
||||
(package
|
||||
(inherit reproc)
|
||||
(name "reproc-with-cpp")
|
||||
(arguments
|
||||
;; No tests.
|
||||
`(#:tests? #f
|
||||
;; Build the shared library instead of a static one.
|
||||
#:configure-flags `("-DBUILD_SHARED_LIBS=1" "-DREPROC++=1")))
|
||||
|
||||
|
||||
|
||||
))
|
||||
(package
|
||||
(inherit reproc)
|
||||
(name "reproc-with-cpp")
|
||||
(arguments
|
||||
`(#:tests? #f
|
||||
#:configure-flags `("-DBUILD_SHARED_LIBS=1" "-DREPROC++=1")))))
|
||||
|
||||
(define-public reproc-with-cpp-static
|
||||
(package
|
||||
(inherit reproc)
|
||||
(name "reproc-with-cpp-static")
|
||||
(arguments
|
||||
;; No tests.
|
||||
`(#:tests? #f
|
||||
;; Build the shared library instead of a static one.
|
||||
#:configure-flags `("-DREPROC++=1")))
|
||||
|
||||
|
||||
|
||||
))
|
||||
(package
|
||||
(inherit reproc)
|
||||
(name "reproc-with-cpp-static")
|
||||
(arguments
|
||||
`(#:tests? #f
|
||||
#:configure-flags `("-DREPROC++=1")))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue