1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/terraform/default.nix

26 lines
571 B
Nix
Raw Normal View History

2016-06-07 21:32:34 +01:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
2016-06-05 10:16:58 +01:00
2016-06-07 21:32:34 +01:00
buildGoPackage rec {
2016-06-05 10:16:58 +01:00
name = "terraform-${version}";
2016-08-03 09:51:59 +01:00
version = "0.7.0";
2016-06-05 10:16:58 +01:00
rev = "v${version}";
2016-07-13 17:32:13 +01:00
2016-06-05 10:16:58 +01:00
goPackagePath = "github.com/hashicorp/terraform";
src = fetchFromGitHub {
2016-06-05 10:16:58 +01:00
inherit rev;
owner = "hashicorp";
repo = "terraform";
2016-08-03 09:51:59 +01:00
sha256 = "0k5d6zph6sq1qg8vi5jmk7apy6v67xn5i7rqjamyr5an7lpxssc9";
2016-06-05 10:16:58 +01:00
};
postInstall = ''
# remove all plugins, they are part of the main binary now
2016-06-05 10:16:58 +01:00
for i in $bin/bin/*; do
2016-08-03 09:51:59 +01:00
if [[ $(basename $i) != terraform ]]; then
rm "$i"
2016-06-05 10:16:58 +01:00
fi
done
'';
}