nixpkgs/pkgs/applications/networking/cluster/terraform/default.nix

32 lines
759 B
Nix
Raw Normal View History

2016-06-07 20:32:34 +00:00
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
2016-06-05 09:16:58 +00:00
2016-06-07 20:32:34 +00:00
buildGoPackage rec {
2016-06-05 09:16:58 +00:00
name = "terraform-${version}";
2016-09-03 18:42:42 +00:00
version = "0.7.2";
2016-06-05 09:16:58 +00:00
rev = "v${version}";
2016-07-13 16:32:13 +00:00
2016-06-05 09:16:58 +00:00
goPackagePath = "github.com/hashicorp/terraform";
src = fetchFromGitHub {
2016-06-05 09:16:58 +00:00
inherit rev;
owner = "hashicorp";
repo = "terraform";
2016-09-03 18:42:42 +00:00
sha256 = "002jg4iwg4g4hkg4hm3szlkyagqzipln3l44b8azh1a7vh1m8cp2";
2016-06-05 09:16:58 +00:00
};
postInstall = ''
# remove all plugins, they are part of the main binary now
2016-06-05 09:16:58 +00:00
for i in $bin/bin/*; do
2016-08-03 08:51:59 +00:00
if [[ $(basename $i) != terraform ]]; then
rm "$i"
2016-06-05 09:16:58 +00:00
fi
done
'';
2016-08-22 14:22:29 +00:00
meta = with stdenv.lib; {
description = "Tool for building, changing, and versioning infrastructure";
homepage = "https://www.terraform.io/";
license = licenses.mpl20;
};
2016-06-05 09:16:58 +00:00
}