diff options
author | Hartmut Goebel <h.goebel@crazy-compilers.com> | 2016-09-09 16:51:03 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-05-10 17:59:22 +0200 |
commit | 59135f0d7e52657bff8bc9f8b0a9133ee671f777 (patch) | |
tree | 5464580f87123b73ca5d75ab7d4e0f561da22352 /guix/build-system | |
parent | 52a791f50ffe460e2985dc356f08789d2d6f9f12 (diff) | |
download | gnu-guix-59135f0d7e52657bff8bc9f8b0a9133ee671f777.tar gnu-guix-59135f0d7e52657bff8bc9f8b0a9133ee671f777.tar.gz |
guix: Add java-utils.
* guix/build/java-utils.scm: New file.
* guix/build-system/ant.scm: Use it.
* Makefile.am (MODULES): Add it.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'guix/build-system')
-rw-r--r-- | guix/build-system/ant.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/guix/build-system/ant.scm b/guix/build-system/ant.scm index bf2f3b4115..228b4e60d2 100644 --- a/guix/build-system/ant.scm +++ b/guix/build-system/ant.scm @@ -39,6 +39,7 @@ (define %ant-build-system-modules ;; Build-side modules imported by default. `((guix build ant-build-system) + (guix build java-utils) (guix build syscalls) ,@%gnu-build-system-modules)) @@ -108,6 +109,7 @@ (guile #f) (imported-modules %ant-build-system-modules) (modules '((guix build ant-build-system) + (guix build java-utils) (guix build utils)))) "Build SOURCE with INPUTS." (define builder |