command-not-found: Fix nix-env invocation
This commit is contained in:
parent
190a49e046
commit
c090efb9d8
@ -30,11 +30,11 @@ The program ‘$program’ is currently not installed. It is provided by
|
|||||||
the package ‘$package’, which I will now install for you.
|
the package ‘$package’, which I will now install for you.
|
||||||
EOF
|
EOF
|
||||||
;
|
;
|
||||||
exit 126 if system("nix-env", "-iA", $package) == 0;
|
exit 126 if system("nix-env", "-iA", "nixos.$package") == 0;
|
||||||
} 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 currently not installed. You can install it by typing:
|
||||||
nix-env -iA $package
|
nix-env -iA nixos.$package
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -42,7 +42,7 @@ EOF
|
|||||||
The program ‘$program’ is currently not installed. It is provided by
|
The program ‘$program’ is currently not installed. It is provided by
|
||||||
several packages. You can install it by typing one of the following:
|
several packages. You can install it by typing one of the following:
|
||||||
EOF
|
EOF
|
||||||
print STDERR " nix-env -iA $_->{package}\n" foreach @$res;
|
print STDERR " nix-env -iA nixos.$_->{package}\n" foreach @$res;
|
||||||
}
|
}
|
||||||
|
|
||||||
exit 127;
|
exit 127;
|
||||||
|
Loading…
Reference in New Issue
Block a user