Merge pull request #39620 from jensbin/terraform_ibmcloud

terraform-provider-ibm: init at 0.8.0
This commit is contained in:
Jörg Thalheim 2018-04-27 19:41:49 +01:00 committed by GitHub
commit d51d9c1d53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,38 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
#
# USAGE:
# install the following package globally or in nix-shell:
#
# (terraform.withPlugins ( plugins: [ terraform-provider-ibm ]))
#
# examples:
# https://github.com/IBM-Cloud/terraform-provider-ibm/tree/master/examples
#
buildGoPackage rec {
name = "terraform-provider-ibm-${version}";
version = "0.8.0";
goPackagePath = "github.com/terraform-providers/terraform-provider-ibm";
subPackages = [ "./" ];
src = fetchFromGitHub {
owner = "IBM-Cloud";
repo = "terraform-provider-ibm";
sha256 = "1jc1g2jadh02z4lfqnvgqk5cqrzk8pnn3cj3cwsm3ksa8pccf6w4";
rev = "v${version}";
};
# Terraform allow checking the provider versions, but this breaks
# if the versions are not provided via file paths.
postBuild = "mv go/bin/terraform-provider-ibm{,_v${version}}";
meta = with stdenv.lib; {
homepage = https://github.com/IBM-Cloud/terraform-provider-ibm;
description = "Terraform provider is used to manage IBM Cloud resources.";
platforms = platforms.all;
license = licenses.mpl20;
maintainers = with maintainers; [ jensbin ];
};
}

View File

@ -20944,6 +20944,8 @@ with pkgs;
terraform = terraform_0_11; terraform = terraform_0_11;
terraform-full = terraform_0_11-full; terraform-full = terraform_0_11-full;
terraform-provider-ibm = callPackage ../applications/networking/cluster/terraform-provider-ibm {};
terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {}; terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {};
terraform-provider-nixos = callPackage ../applications/networking/cluster/terraform-provider-nixos {}; terraform-provider-nixos = callPackage ../applications/networking/cluster/terraform-provider-nixos {};