summaryrefslogtreecommitdiff
path: root/guix/build-system
AgeCommit message (Collapse)Author
2012-07-07build-system/gnu: Add dependency on GNU Findutils.Ludovic Courtès
* guix/build-system/gnu.scm (%standard-inputs): Add "findutils".
2012-07-07build-system/gnu: Add `tests?' parameter.Ludovic Courtès
* guix/build-system/gnu.scm (gnu-build): Add `tests?' parameter. [builder]: Inherit it.
2012-07-07build-system/gnu: Support parallel builds and tests.Ludovic Courtès
* guix/build/gnu-build-system.scm (build): Add `parallel-build?' parameter; honor it and $NIX_BUILD_CORES. (check): Add `parallel-tests?' parameter; likewise. * guix/build-system/gnu.scm (gnu-build): Add `parallel-build?' and `parallel-tests?' parameters. [builder]: Inherit them.
2012-07-05build-system/gnu: Add a `patch' phase.Ludovic Courtès
* guix/build/gnu-build-system.scm (patch): New procedure. (%standard-phases): Add `patch'. * guix/build-system/gnu.scm (gnu-build): Add `patches' and `patch-flags' parameters. Pass them on.
2012-07-05build-system/gnu: Make the builder's module list a parameter.Ludovic Courtès
* guix/build-system/gnu.scm (gnu-build): Add a `modules' keyword parameter; use it.
2012-06-28build-system/gnu: Add GNU Awk to the standard inputs.Ludovic Courtès
* guix/build-system/gnu.scm (%standard-inputs): Add GNU Awk.
2012-06-28Introduce `compile-time-value' and use it.Ludovic Courtès
* guix/utils.scm (compile-time-value): New macro. (%nixpkgs-directory): Use it. * guix/build-system/gnu.scm (%standard-inputs): Likewise.
2012-06-28build-system/gnu: Have `configure-flags' and `make-flags' evaluated.Ludovic Courtès
* guix/build-system/gnu.scm (gnu-build): Double-quote the default value of MAKE-FLAGS and CONFIGURE-FLAGS. Don't quote them in BUILDER.
2012-06-27Abstract build systems.Ludovic Courtès
* Makefile.am (MODULES): Add `guix/build-system.scm' and `guix/build-system/gnu.scm'. Remove `guix/gnu-build-system.scm'. * guix/build-system.scm: New file. * guix/gnu-build-system.scm: Rename to... * guix/build-system/gnu.scm: ... this. (gnu-build-system): New variable. * tests/builders.scm: Adjust `use-module' clauses. ("gnu-build-system"): New test.