terraform-providers.linuxbox: init at 0.3.11

This commit is contained in:
zimbatm 2020-11-04 19:22:57 +01:00
parent dfea4e4951
commit 1eaf05fbaf
No known key found for this signature in database
GPG Key ID: 71BAF6D40C1D63D7
2 changed files with 27 additions and 0 deletions

View File

@ -167,6 +167,7 @@ let
hcloud = callPackage ./hcloud {};
keycloak = callPackage ./keycloak {};
libvirt = callPackage ./libvirt {};
linuxbox = callPackage ./linuxbox {};
lxd = callPackage ./lxd {};
shell = callPackage ./shell {};
vpsadmin = callPackage ./vpsadmin {};

View File

@ -0,0 +1,26 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "terraform-provider-linuxbox";
version = "0.3.11";
src = fetchFromGitHub {
owner = "numtide";
repo = pname;
rev = "v${version}";
sha256 = "1sxb2iv4dl0rw3v1r7k5dfkyh14nmp19cprqafhb7ncarmvawq39";
};
vendorSha256 = "16hp0pv1qpvr34ac1syjci39csvyj3c748inllypjwx76q6rwp7k";
postInstall = "mv $out/bin/terraform-provider-linuxbox{,_v${version}}";
passthru.provider-source-address = "registry.terraform.io/numtide/linuxbox";
meta = with stdenv.lib; {
homepage = "https://github.com/numtide/terraform-provider-linuxbox";
description = "Basic building block for Seed DevOps";
license = licenses.bsd3;
maintainers = with maintainers; [ zimbatm ];
};
}