mirror of
https://gitlab.univ-nantes.fr/glicid-public/guix-glicid.git
synced 2025-04-30 06:08:37 +02:00
Merge branch 'devel' into 'main'
add grep -P variant for glicid See merge request glicid-public/guix-glicid!390
This commit is contained in:
commit
6485269b51
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