forked from mirrors/nixpkgs
terraform-provider-nixos: init at 0.0.1
This commit is contained in:
parent
cdd0a24fa6
commit
380dd22f7c
|
@ -0,0 +1,23 @@
|
||||||
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
||||||
|
buildGoPackage rec {
|
||||||
|
name = "terraform-provider-nixos-${version}";
|
||||||
|
version = "0.0.1";
|
||||||
|
goPackagePath = "github.com/tweag/terraform-provider-nixos";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tweag";
|
||||||
|
repo = "terraform-provider-nixos";
|
||||||
|
sha256 = "00vz6qjq1pk39iqg4356b8g3c6slla9jifkv2knk46gc9q93q0lf";
|
||||||
|
rev = "v${version}";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Terraform allow checking the provider versions, but this breaks
|
||||||
|
# if the versions are not provided via file paths.
|
||||||
|
postBuild = "mv go/bin/terraform-provider-nixos{,_v${version}}";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Terraform plugin for outputting NixOS configuration files from Terraform resources.";
|
||||||
|
homepage = "https://github.com/tweag/terraform-provider-nixos";
|
||||||
|
license = licenses.mpl20;
|
||||||
|
maintainers = with maintainers; [ grahamc ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -20537,6 +20537,8 @@ with pkgs;
|
||||||
|
|
||||||
terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {};
|
terraform-inventory = callPackage ../applications/networking/cluster/terraform-inventory {};
|
||||||
|
|
||||||
|
terraform-provider-nixos = callPackage ../applications/networking/cluster/terraform-provider-nixos {};
|
||||||
|
|
||||||
terraform-landscape = callPackage ../applications/networking/cluster/terraform-landscape {};
|
terraform-landscape = callPackage ../applications/networking/cluster/terraform-landscape {};
|
||||||
|
|
||||||
terragrunt = callPackage ../applications/networking/cluster/terragrunt {};
|
terragrunt = callPackage ../applications/networking/cluster/terragrunt {};
|
||||||
|
|
Loading…
Reference in a new issue