Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 85eb1b58d32f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1b5ee955d3d9
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 29, 2020

  1. Copy the full SHA
    1b5ee95 View commit details
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
Original file line number Diff line number Diff line change
@@ -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 {};