evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / in / inframap / package.nix
blobe1aca0a9301b5cb8e9f74be5989ac4a4a854acb5
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
5 buildGoModule rec {
6   pname = "inframap";
7   version = "0.7.0";
9   src = fetchFromGitHub {
10     owner = "cycloidio";
11     repo = pname;
12     rev = "v${version}";
13     hash = "sha256-jV9mMJNSsRWdbvHr7OvF1cF2KVqxUEjlM9AaVMxNqBI=";
14   };
16   ldflags = [
17     "-s"
18     "-w"
19     "-X github.com/cycloidio/inframap/cmd.Version=${version}"
20   ];
22   vendorHash = "sha256-cEKrxuuksMEEVJEZ9/ZU2/MMxWZKlO05DkNX4n3ug/0=";
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   };