gnu: idris: Fix overly zealous regular expression.
* gnu/packages/idris.scm (idris)[arguments]: Limit characters matched after package name in cabal file substitutions.
parent
7d60b97a6f
commit
92caedb60c
|
@ -99,7 +99,7 @@
|
|||
(add-before 'configure 'update-constraints
|
||||
(lambda _
|
||||
(substitute* "idris.cabal"
|
||||
(("(aeson|ansi-terminal|bytestring|haskeline|libffi|megaparsec|network|optparse-applicative)\\s+[^,]+" all dep)
|
||||
(("(aeson|ansi-terminal|bytestring|haskeline|libffi|megaparsec|network|optparse-applicative)\\s+[<>=0-9. &|]+" all dep)
|
||||
dep))))
|
||||
(add-before 'configure 'set-cc-command
|
||||
(lambda _
|
||||
|
|
Reference in New Issue