about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2018-07-20 09:08:11 +0200
committerGitHub <noreply@github.com>2018-07-20 09:08:11 +0200
commit31d1d3d166c16ea8946fd3c9d320761a38d44c86 (patch)
tree1e034a724a1b13d3c7406e53c60154a174fc4166
parentdefa76037fcc12560b6e6ff36860d58096ba39bb (diff)
parent48a1dafdbeb184b78ea775c1938014b40e9dd5cf (diff)
downloadnixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.tar
nixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.tar.gz
nixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.tar.bz2
nixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.tar.lz
nixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.tar.xz
nixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.tar.zst
nixlib-31d1d3d166c16ea8946fd3c9d320761a38d44c86.zip
Merge pull request #43831 from eliasp/terraform-name-whitespace
terraform: remove whitespace from name
-rw-r--r--pkgs/applications/networking/cluster/terraform/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix
index 4f45de76d161..fbcb6c8be40d 100644
--- a/pkgs/applications/networking/cluster/terraform/default.nix
+++ b/pkgs/applications/networking/cluster/terraform/default.nix
@@ -60,7 +60,7 @@ let
           # of plugins, which might be counterintuitive if someone just wants a vanilla Terraform.
           if actualPlugins == []
             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;
               buildInputs = [ makeWrapper ];