{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "terraform-${version}"; version = "0.8.2"; rev = "v${version}"; goPackagePath = "github.com/hashicorp/terraform"; src = fetchFromGitHub { inherit rev; owner = "hashicorp"; repo = "terraform"; sha256 = "1645la750lqx2m57sbl6xg1cnqgwrfk5dhcw08wm4z7zxdnqys7b"; }; postInstall = '' # remove all plugins, they are part of the main binary now for i in $bin/bin/*; do if [[ $(basename $i) != terraform ]]; then rm "$i" fi done ''; meta = with stdenv.lib; { description = "Tool for building, changing, and versioning infrastructure"; homepage = "https://www.terraform.io/"; license = licenses.mpl20; maintainers = with maintainers; [ jgeerds zimbatm ]; }; }