terraform: remove whitespace from name
A `nix-env -iA unstable.terraform-full` gave me `installing 'terraform-with-plugins -0.11.7'` This removes the whitespace which sneaked into its name.
This commit is contained in:
parent
6c1e45b000
commit
48a1dafdbe
|
@ -60,7 +60,7 @@ let
|
||||||
# of plugins, which might be counterintuitive if someone just wants a vanilla Terraform.
|
# of plugins, which might be counterintuitive if someone just wants a vanilla Terraform.
|
||||||
if actualPlugins == []
|
if actualPlugins == []
|
||||||
then terraform.overrideAttrs (orig: { passthru = orig.passthru // passthru; })
|
then terraform.overrideAttrs (orig: { passthru = orig.passthru // passthru; })
|
||||||
else lib.appendToName "with-plugins "(stdenv.mkDerivation {
|
else lib.appendToName "with-plugins"(stdenv.mkDerivation {
|
||||||
inherit (terraform) name;
|
inherit (terraform) name;
|
||||||
buildInputs = [ makeWrapper ];
|
buildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue