39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ 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.9.1";
|
|
|
|
goPackagePath = "github.com/terraform-providers/terraform-provider-ibm";
|
|
subPackages = [ "./" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IBM-Cloud";
|
|
repo = "terraform-provider-ibm";
|
|
sha256 = "1j8v7r5lsvrg1afdbwxi8vq665qr47a9pddqgmpkirh99pzixgr6";
|
|
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 ];
|
|
};
|
|
}
|