Merge pull request #43831 from eliasp/terraform-name-whitespace

terraform: remove whitespace from name
This commit is contained in:
Sarah Brofeldt 2018-07-20 09:08:11 +02:00 committed by GitHub
commit 31d1d3d166
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ];