fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / in / inframap / package.nix
blobddfe0ce63dcd56878819a5746ba7e0318acde0d4
2   buildGoModule,
3   fetchFromGitHub,
4   lib,
5 }:
6 buildGoModule rec {
7   pname = "inframap";
8   version = "0.7.0";
10   src = fetchFromGitHub {
11     owner = "cycloidio";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-jV9mMJNSsRWdbvHr7OvF1cF2KVqxUEjlM9AaVMxNqBI=";
15   };
17   ldflags = [
18     "-s"
19     "-w"
20     "-X github.com/cycloidio/inframap/cmd.Version=${version}"
21   ];
23   vendorHash = "sha256-cEKrxuuksMEEVJEZ9/ZU2/MMxWZKlO05DkNX4n3ug/0=";
25   meta = with lib; {
26     description = "Read your tfstate or HCL to generate a graph specific for each provider, showing only the resources that are most important/relevant";
27     homepage = "https://github.com/cycloidio/inframap";
28     license = licenses.mit;
29     maintainers = with maintainers; [ urandom ];
30   };