mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 01:33:20 +00:00
terraform-providers.linuxbox: init at 0.3.11
This commit is contained in:
parent
dfea4e4951
commit
1eaf05fbaf
@ -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 {};
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user