aboutsummaryrefslogtreecommitdiff
path: root/scripts/nix-build.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/nix-build.in')
-rwxr-xr-xscripts/nix-build.in26
1 files changed, 2 insertions, 24 deletions
diff --git a/scripts/nix-build.in b/scripts/nix-build.in
index 8973f5fb7..427bc605b 100755
--- a/scripts/nix-build.in
+++ b/scripts/nix-build.in
@@ -33,36 +33,14 @@ for (my $n = 0; $n < scalar @ARGV; $n++) {
my $arg = $ARGV[$n];
if ($arg eq "--help") {
- print STDERR <<EOF;
-Usage: nix-build [OPTION]... [FILE]...
-
-`nix-build' builds the given Nix expressions (which
-default to ./default.nix if none are given). A symlink called
-`result' is placed in the current directory.
-
-Flags:
- --add-drv-link: create a symlink `derivation' to the store derivation
- --drv-link NAME: create symlink NAME instead of `derivation'
- --no-out-link: do not create the `result' symlink
- --out-link / -o NAME: create symlink NAME instead of `result'
- --attr / -A ATTR: select a specific attribute from the Nix expression
-
- --run-env: build dependencies of the specified derivation, then start a
- shell with the environment of the derivation
- --command: command to run with `--run-env'
- --exclude: regexp specifying dependencies to be excluded by `--run-env'
-
-Any additional flags are passed to `nix-store'.
-EOF
- exit 0;
- # '` hack
+ exec "man nix-build" or die;
}
elsif ($arg eq "--version") {
print "nix-build (Nix) $Nix::Config::version\n";
exit 0;
}
-
+
elsif ($arg eq "--add-drv-link") {
$drvLink = "./derivation";
}