about summary refs log tree commit diff
path: root/pkgs/development/tools/bodyclose/default.nix
blob: 9072fe4c1045432d55b21d542cc9fc8bd26b40c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, buildGoModule
, fetchFromGitHub
, unstableGitUpdater
}:

buildGoModule {
  pname = "bodyclose";
  version = "0-unstable-2024-01-26";

  src = fetchFromGitHub {
    owner = "timakin";
    repo = "bodyclose";
    rev = "f835fa56326ac81b2d54408f1a3a6c43bca4d5aa";
    hash = "sha256-yPvBDJx6ECrSLDazdNDRl79iogsZO2qNWHuUuwQoRHU=";
  };

  vendorHash = "sha256-8grdJuV8aSETsJr2VazC/3ctfnGh3UgjOWD4/xf3uC8=";

  ldflags = [ "-s" "-w" ];

  passthru.updateScript = unstableGitUpdater {};

  meta = with lib; {
    description = "Golang linter to check whether HTTP response body is closed and a re-use of TCP connection is not blocked";
    mainProgram = "bodyclose";
    homepage = "https://github.com/timakin/bodyclose";
    license = licenses.mit;
    maintainers = with maintainers; [ meain ];
  };
}