tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
terraform-inventory: added htr as maintainer
Hugo Tavares Reis
8 years ago
21898ff4
e3de736b
+5
-3
2 changed files
expand all
collapse all
unified
split
lib
maintainers.nix
pkgs
applications
networking
cluster
terraform-inventory
default.nix
+1
lib/maintainers.nix
···
220
220
hinton = "Tom Hinton <t@larkery.com>";
221
221
hodapp = "Chris Hodapp <hodapp87@gmail.com>";
222
222
hrdinka = "Christoph Hrdinka <c.nix@hrdinka.at>";
223
223
+
htr = "Hugo Tavares Reis <hugo@linux.com>";
223
224
iand675 = "Ian Duncan <ian@iankduncan.com>";
224
225
ianwookim = "Ian-Woo Kim <ianwookim@gmail.com>";
225
226
igsha = "Igor Sharonov <igor.sharonov@gmail.com>";
+4
-3
pkgs/applications/networking/cluster/terraform-inventory/default.nix
···
18
18
19
19
goDeps = ./deps.nix;
20
20
21
21
-
meta = {
21
21
+
meta = with stdenv.lib; {
22
22
homepage = https://github.com/adammck/terraform-inventory;
23
23
description = "Terraform state to ansible inventory adapter";
24
24
-
platforms = stdenv.lib.platforms.all;
25
25
-
license = stdenv.lib.licenses.mit;
24
24
+
platforms = platforms.all;
25
25
+
license = licenses.mit;
26
26
+
maintainers = with maintainers; [ htr ];
26
27
};
27
28
}