mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
terraform-providers.cloudfoundry: init at 0.12.6 (#99960)
This commit is contained in:
parent
85eb1b58d3
commit
1b5ee955d3
@ -0,0 +1,29 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "terraform-provider-cloudfoundry";
|
||||
version = "0.12.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cloudfoundry-community";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0n5ybpzk6zkrnd9vpmbjlkm8fdp7nbfr046wih0jk72pmiyrcygi";
|
||||
};
|
||||
|
||||
vendorSha256 = "01lfsd9aw9w3kr1a2a5b7ac6d8jaij83lhxl4y4qsnjlqk86fbxq";
|
||||
|
||||
# needs a running cloudfoundry
|
||||
doCheck = false;
|
||||
|
||||
postInstall = "mv $out/bin/terraform-provider-cloudfoundry{,_v${version}}";
|
||||
|
||||
passthru = { provider-source-address = "registry.terraform.io/cloudfoundry-community/cloudfoundry"; };
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://github.com/cloudfoundry-community/terraform-provider-cloudfoundry";
|
||||
description = "Terraform provider for cloudfoundry";
|
||||
license = licenses.mpl20;
|
||||
maintainers = with maintainers; [ ris ];
|
||||
};
|
||||
}
|
@ -161,6 +161,7 @@ let
|
||||
|
||||
# Packages that don't fit the default model
|
||||
ansible = callPackage ./ansible {};
|
||||
cloudfoundry = callPackage ./cloudfoundry {};
|
||||
elasticsearch = callPackage ./elasticsearch {};
|
||||
gandi = callPackage ./gandi {};
|
||||
keycloak = callPackage ./keycloak {};
|
||||
|
Loading…
Reference in New Issue
Block a user