mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-29 21:58:36 +02:00
add grep -P variant for glicid
This commit is contained in:
parent
e0608cfb9c
commit
11345f41bd
1 changed files with 16 additions and 0 deletions
16
glicid/packages/base.scm
Normal file
16
glicid/packages/base.scm
Normal file
|
@ -0,0 +1,16 @@
|
|||
(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
|
Loading…
Add table
Reference in a new issue