mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
14 lines
505 B
Scheme
14 lines
505 B
Scheme
(define-module (glicid packages base)
|
|
#:use-module (guix packages)
|
|
#:use-module (gnu packages cpp)
|
|
#:use-module (gnu packages base)
|
|
#:use-module (gnu packages pcre)
|
|
)
|
|
|
|
(define-public grep-glicid
|
|
(package
|
|
(inherit grep)
|
|
(name "grep-glicid")
|
|
(inputs (list pcre2))
|
|
(arguments
|
|
`(#:configure-flags (list "--enable-perl-regexp") ))))
|