diff options
author | EuAndreh <eu@euandre.org> | 2021-03-11 18:25:12 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-03-11 18:25:31 -0300 |
commit | e11c467186ebd8613768d94292b5bc565aca07e8 (patch) | |
tree | 8e69fe8983c2a3cd94708a26ed82d299ffac7693 /src | |
parent | queue.scm: Indent code with Guix style (diff) | |
download | package-repository-e11c467186ebd8613768d94292b5bc565aca07e8.tar.gz package-repository-e11c467186ebd8613768d94292b5bc565aca07e8.tar.xz |
queue.scm: Fix build of perl-commonmark
Diffstat (limited to 'src')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index bd4d126..34aa7e2 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -286,6 +286,15 @@ is a static source code analysis engine.") (base32 "1pgaqa4f00i9r5z7l9xiya0q51ysq0nhpvgr0f3rza3cxz1v80d5")))) (build-system perl-build-system) + (arguments + `(#:make-maker-flags + ;; MakeMaker doesn't honor $LIBRARY_PATH nor $INCLUDE_PATH. + (list (string-append "LIBS=-L" + (assoc-ref %build-inputs "cmark") + "/lib -lcmark") + (string-append "INC=-I" + (assoc-ref %build-inputs "cmark") + "/include")))) (native-inputs `(("cmark" ,cmark) ("perl-devel-checklib", perl-devel-checklib) @@ -423,7 +432,6 @@ Template::Mustache conforms to v1.1.3 of the Mustache specs.") perl-readonly-xs perl-ppix-utilities perl-critic - #; perl-commonmark perl-escape-houdini perl-class-tiny-antlers |