From 9f34d1f19a34771b493d3bd5e3361a127bc10c98 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 3 Apr 2017 11:59:24 +0800 Subject: terraform: remove 0.8.5 specific file It is now handled by the terraform build function instead. --- .../networking/cluster/terraform/0.8.5.nix | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 pkgs/applications/networking/cluster/terraform/0.8.5.nix 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 - ]; - }; -} -- cgit 1.4.1