summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2017-04-03 11:59:24 +0800
committerPeter Hoeg <peter@hoeg.com>2017-04-03 11:59:24 +0800
commit9f34d1f19a34771b493d3bd5e3361a127bc10c98 (patch)
tree460a8c37cc996b1d51bcae88531f778e5b29ac6c
parentf6ae3f62ee267551e4db911f23db1c4cb13e0d77 (diff)
downloadnixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.tar
nixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.tar.gz
nixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.tar.bz2
nixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.tar.lz
nixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.tar.xz
nixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.tar.zst
nixpkgs-9f34d1f19a34771b493d3bd5e3361a127bc10c98.zip
terraform: remove 0.8.5 specific file
It is now handled by the terraform build function instead.
-rw-r--r--pkgs/applications/networking/cluster/terraform/0.8.5.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/applications/networking/cluster/terraform/0.8.5.nix b/pkgs/applications/networking/cluster/terraform/0.8.5.nix
deleted file mode 100644
index 7f927b58670..00000000000
--- a/pkgs/applications/networking/cluster/terraform/0.8.5.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
-
-buildGoPackage rec {
-  name = "terraform-${version}";
-  version = "0.8.5";
-
-  goPackagePath = "github.com/hashicorp/terraform";
-
-  src = fetchFromGitHub {
-    owner  = "hashicorp";
-    repo   = "terraform";
-    rev    = "v${version}";
-    sha256 = "1cxwv3652fpsbm2zk1akw356cd7w7vhny1623ighgbz9ha8gvg09";
-  };
-
-  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
-    ];
-  };
-}