ROMAN_HUNDREDS, ROMAN_TENS and ROMAN_ONES seem to use syntax, that is not recognized (any longer?) by flex, so let's expand their definitions. Index: spl-1.2.1/include/roman_numbers.metaflex =================================================================== --- spl-1.2.1.orig/include/roman_numbers.metaflex +++ spl-1.2.1/include/roman_numbers.metaflex @@ -1,5 +1,5 @@ ROMAN_THOUSANDS m+ -ROMAN_HUNDREDS (c(d|m)|dc{0,3}|c{1,3}) -ROMAN_TENS (x(l|c)|lx{0,3}|x{1,3}) -ROMAN_ONES (i(v|x)|vi{0,3}|i{1,3}) +ROMAN_HUNDREDS (c(d|m|c?c?)|dc?c?c?) +ROMAN_TENS (x(l|c|x?x?)|lx?x?x?) +ROMAN_ONES (i(v|x|i?i?)|vi?i?i?) ROMAN_NUMBER {ROMAN_ONES}|{ROMAN_TENS}{ROMAN_ONES}?|{ROMAN_HUNDREDS}{ROMAN_TENS}?{ROMAN_ONES}?|{ROMAN_THOUSANDS}{ROMAN_HUNDREDS}?{ROMAN_TENS}?{ROMAN_ONES}? on> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/haskell-crypto.scm
AgeCommit message (Expand)Author
2020-12-06gnu: Add ghc-cryptonite-conduit....* gnu/packages/haskell-crypto.scm (ghc-cryptonite-conduit): New variable. Signed-off-by: Timothy Sample <samplet@ngyro.com> Giacomo Leidi
2020-08-13gnu: ghc-cryptonite: Add "doc" output....* gnu/packages/haskell-crypto.scm (ghc-cryptonite)[outputs]: Add "doc" output next to "out" and "static". Ricardo Wurmus
2020-08-13gnu: ghc-crypto-api-tests: Add "doc" output....* gnu/packages/haskell-crypto.scm (ghc-crypto-api-tests)[outputs]: Add "doc" output next to "out" and "static". Ricardo Wurmus
2020-08-13build-system/haskell: Add 'extra-directories' keyword....See <https://bugs.gnu.org/39309>. * guix/build-system/haskell.scm (lower): Include the transitive propagated inputs of 'extra-directories' inputs. (haskell-build): Add the 'extra-directories' keyword and pass it through to the builder. * guix/build/haskell-build-system.scm (configure): Use it to select which inputs get passed via 'extra-include-dirs' and 'extra-lib-dirs' to Cabal. * gnu/packages/haskell-xyz.scm (ghc-alsa-core, ghc-hmatrix, ghc-hmatrix-gsl, ghc-hslua, ghc-iwlib, ghc-libyaml, ghc-ncurses, ghc-openglraw, ghc-x11, ghc-x11-xft, ghc-zlib): Set 'extra-directories'. * gnu/packages/haskell-crypto.scm (ghc-digest, ghc-hsopenssl): Likewise. Timothy Sample