terraform: remove 0.8.5 specific file

It is now handled by the terraform build function instead.

-34
-34
pkgs/applications/networking/cluster/terraform/0.8.5.nix
··· 1 - { stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 - 3 - buildGoPackage rec { 4 - name = "terraform-${version}"; 5 - version = "0.8.5"; 6 - 7 - goPackagePath = "github.com/hashicorp/terraform"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "hashicorp"; 11 - repo = "terraform"; 12 - rev = "v${version}"; 13 - sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09"; 14 - }; 15 - 16 - postInstall = '' 17 - # remove all plugins, they are part of the main binary now 18 - for i in $bin/bin/*; do 19 - if [[ $(basename $i) != terraform ]]; then 20 - rm "$i" 21 - fi 22 - done 23 - ''; 24 - 25 - meta = with stdenv.lib; { 26 - description = "Tool for building, changing, and versioning infrastructure"; 27 - homepage = "https://www.terraform.io/"; 28 - license = licenses.mpl20; 29 - maintainers = with maintainers; [ 30 - jgeerds 31 - zimbatm 32 - ]; 33 - }; 34 - }
···