lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

inframap: init at 0.6.7

Fixes #185136

+32
+30
pkgs/applications/networking/cluster/inframap/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + }: 5 + buildGoModule rec { 6 + pname = "inframap"; 7 + version = "0.6.7"; 8 + 9 + src = fetchFromGitHub { 10 + owner = "cycloidio"; 11 + repo = pname; 12 + rev = "v${version}"; 13 + hash = "sha256-Ol2FkCP7Wq7FcwOaDw9d20v4jkNIfewdMErz/kJR0/g="; 14 + }; 15 + 16 + ldflags = [ 17 + "-s" 18 + "-w" 19 + "-X github.com/cycloidio/inframap/cmd.Version=${version}" 20 + ]; 21 + 22 + vendorHash = "sha256-fD/u0gYfbhyYWjXtBDtL7zWRu7b7mzpLPEjB+ictP6o="; 23 + 24 + meta = with lib; { 25 + description = "Read your tfstate or HCL to generate a graph specific for each provider, showing only the resources that are most important/relevant."; 26 + homepage = "https://github.com/cycloidio/inframap"; 27 + license = licenses.mit; 28 + maintainers = with maintainers; [ urandom ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 29547 29547 29548 29548 imhex = callPackage ../applications/editors/imhex { }; 29549 29549 29550 + inframap = callPackage ../applications/networking/cluster/inframap {}; 29551 + 29550 29552 inkcut = libsForQt5.callPackage ../applications/misc/inkcut { }; 29551 29553 29552 29554 inklingreader = callPackage ../tools/misc/inklingreader { };