mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
16 lines
No EOL
339 B
Scheme
16 lines
No EOL
339 B
Scheme
(define-module (glicid packages base))
|
|
|
|
(use-modules (guix packages) (gnu packages cpp) (gnu packages base) (gnu packages pcre))
|
|
|
|
(define-public grep-glicid
|
|
(package
|
|
(inherit grep)
|
|
(name "grep-glicid")
|
|
(inputs (list pcre2))
|
|
(arguments
|
|
`(#:configure-flags
|
|
(list "--enable-perl-regexp")
|
|
|
|
))))
|
|
|
|
grep-glicid |