nixos/command-not-found: don't suggest nix-env
This commit is contained in:
parent
014440d710
commit
88632b7801
@ -36,16 +36,17 @@ EOF
|
|||||||
exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV));
|
exec("nix-shell", "-p", $package, "--run", shell_quote("exec", @ARGV));
|
||||||
} else {
|
} else {
|
||||||
print STDERR <<EOF;
|
print STDERR <<EOF;
|
||||||
The program ‘$program’ is currently not installed. You can install it by typing:
|
The program ‘$program’ is not in your PATH. You can make it available in a
|
||||||
nix-env -iA nixos.$package
|
ephemeral shell by typing:
|
||||||
|
nix-shell -p $package
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
print STDERR <<EOF;
|
print STDERR <<EOF;
|
||||||
The program ‘$program’ is currently not installed. It is provided by
|
The program ‘$program’ is not in your PATH. It is provided by several packages.
|
||||||
several packages. You can install it by typing one of the following:
|
You can make it available in a ephemeral shell by typing one of the following:
|
||||||
EOF
|
EOF
|
||||||
print STDERR " nix-env -iA nixos.$_->{package}\n" foreach @$res;
|
print STDERR " nix-shell -p $_->{package}\n" foreach @$res;
|
||||||
}
|
}
|
||||||
|
|
||||||
exit 127;
|
exit 127;
|
||||||
|
Loading…
Reference in New Issue
Block a user