1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-11-27 05:29:46 +01:00

home-manager: add --(no-)substitute options

Fixes #312
This commit is contained in:
Robert Helgesson 2019-12-01 10:43:39 +01:00
parent 94d183eaaa
commit 7c2532d9f9
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
2 changed files with 19 additions and 1 deletions

View file

@ -126,6 +126,10 @@
--show-trace --show-trace
</arg> </arg>
<arg>
--(no-)substitute
</arg>
<arg> <arg>
<group choice="req"> <group choice="req">
<arg choice="plain"> <arg choice="plain">
@ -446,6 +450,18 @@
</para> </para>
</listitem> </listitem>
</varlistentry> </varlistentry>
<varlistentry>
<term>
<option>--(no-)substitute</option>
</term>
<listitem>
<para>
Passed on to <citerefentry>
<refentrytitle>nix-build</refentrytitle>
<manvolnum>1</manvolnum> </citerefentry>.
</para>
</listitem>
</varlistentry>
<varlistentry> <varlistentry>
<term> <term>
<option>-v</option> <option>-v</option>

View file

@ -431,6 +431,7 @@ function doHelp() {
echo " --max-jobs NUM" echo " --max-jobs NUM"
echo " --option NAME VALUE" echo " --option NAME VALUE"
echo " --show-trace" echo " --show-trace"
echo " --(no-)substitute"
echo echo
echo "Commands" echo "Commands"
echo echo
@ -507,7 +508,8 @@ while [[ $# -gt 0 ]]; do
PASSTHROUGH_OPTS+=("$opt" "$1") PASSTHROUGH_OPTS+=("$opt" "$1")
shift shift
;; ;;
--keep-failed|--keep-going|--show-trace) --keep-failed|--keep-going|--show-trace\
|--substitute|--no-substitute)
PASSTHROUGH_OPTS+=("$opt") PASSTHROUGH_OPTS+=("$opt")
;; ;;
-v|--verbose) -v|--verbose)