linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / pg_flame / default.nix
blob7625e67e0010bb0f8545858384c10cfb7ca058d0
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "pg_flame";
5   version = "1.2";
7   src = fetchFromGitHub {
8     owner = "mgartner";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1a03vxqnga83mhjp7pkl0klhkyfaby7ncbwm45xbl8c7s6zwhnw2";
12   };
14   vendorSha256 = "1rkx20winh66y2m7i7q13jpr83044i2d1pfd5p5l5kkpsix5mra5";
16   doCheck = false;
18   meta = with lib; {
19     description = "Flamegraph generator for Postgres EXPLAIN ANALYZE output";
20     homepage = "https://github.com/mgartner/pg_flame";
21     license = licenses.asl20;
22     maintainers = with maintainers; [ Br1ght0ne ];
23   };