about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/terraform-providers/vpsadmin/default.nix
blob: 2832580287b114d104eec04e2dd439eecdd07308 (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}";
    sha256 = "1vny6w9arbbra04bjjafisaswinm93ic1phy59l0g78sqf6x3a7v";
  };

  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 ];
  };
}