diff options
author | Carl Dong <contact@carldong.me> | 2019-09-11 15:43:19 -0400 |
---|---|---|
committer | Carl Dong <contact@carldong.me> | 2019-10-11 11:44:44 -0400 |
commit | e214a22007450187c3db5d9fdef6ee021be6e953 (patch) | |
tree | 5808094fb50825c6f64ca87bfe65da07c85e7e6b /doc | |
parent | 07bec45dd3a1c5fa05f7ebfdb60ddbcf098bd01f (diff) | |
download | patches-e214a22007450187c3db5d9fdef6ee021be6e953.tar patches-e214a22007450187c3db5d9fdef6ee021be6e953.tar.gz |
gnu: Add nsis-x86_64 and nsis-i686.
* guix/build-system/scons.scm (scons-build): Add build-targets and
install-targets parameters.
* guix/build/scons-build-system.scm (build, install): Adjust
accordingly.
* doc/guix.texi (Build Systems): Document it.
* gnu/packages/installers.scm: New file,
(make-nsis): New procedure,
(nsis-x86_64, nsis-i686): New variables.
* gnu/packages/patches/nsis-env-passthru.patch: New file.
* gnu/local.mk (dist_patch_DATA, GNU_SYSTEM_MODULES): Adjust
accordingly.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 97d797c13f..6703c2756c 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -6405,9 +6405,11 @@ tool. This build system runs @code{scons} to build the package, the package. Additional flags to be passed to @code{scons} can be specified with the -@code{#:scons-flags} parameter. The version of Python used to run SCons -can be specified by selecting the appropriate SCons package with the -@code{#:scons} parameter. +@code{#:scons-flags} parameter. The default build and install targets +can be overridden with @code{#:build-targets} and +@code{#:install-targets} respectively. The version of Python used to +run SCons can be specified by selecting the appropriate SCons package +with the @code{#:scons} parameter. @end defvr @defvr {Scheme Variable} haskell-build-system |