forked from mirrors/nixpkgs
066db11215
This reverts commit4e6bf03504
, reversing changes made toafd997aab6
. Instead we propagate those frameworks from the compiler again
28 lines
885 B
Nix
28 lines
885 B
Nix
{ stdenv, fetchFromGitHub, buildGoModule }:
|
|
buildGoModule rec {
|
|
pname = "terraform-provider-elasticsearch";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillbaker";
|
|
repo = "terraform-provider-elasticsearch";
|
|
rev = "v${version}";
|
|
sha256 = "0ci9gcn9ijdbx25wa99iy0b3sl7akqa7b6gi9wnnl1dawpqznj7v";
|
|
};
|
|
|
|
modSha256 = "1xk21xswqwpv34j4ba4fj8lcbvfdd12x7rq1hrdyd21mdhmrhw0p";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
# Terraform allow checking the provider versions, but this breaks
|
|
# if the versions are not provided via file paths.
|
|
postInstall = "mv $out/bin/terraform-provider-elasticsearch{,_v${version}}";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Terraform provider for elasticsearch";
|
|
homepage = "https://github.com/phillbaker/terraform-provider-elasticsearch";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ basvandijk ];
|
|
};
|
|
}
|