about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/terraform-providers/vpsadmin/default.nix
blob: 270c7adcb47ff754940af8e356dbf4ccfd3f9633 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
  pname = "terraform-provider-vpsadmin";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "vpsfreecz";
    repo = "terraform-provider-vpsadmin";
    rev = "v${version}";
    hash = "sha256-+6jRjcManQdoKh7ewOJI1UaulY5OSbkIUHmtrBI33u4=";
  };

  vendorSha256 = "0j90fnzba23mwf9bzf9w5h0hszkl3h61p5i780s9v9c0hbzhbqsh";

  subPackages = [ "." ];

  # Terraform allow checking the provider versions, but this breaks
  # if the versions are not provided via file paths.
  postInstall = "mv $out/bin/${pname}{,_v${version}}";

  meta = with stdenv.lib; {
    description = "Terraform provider for vpsAdmin";
    homepage = "https://github.com/vpsfreecz/terraform-provider-vpsadmin";
    license = licenses.mpl20;
    maintainers = with maintainers; [ zimbatm ];
  };
}