evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / bo / bodyclose / package.nix
blob9072fe4c1045432d55b21d542cc9fc8bd26b40c6
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 , unstableGitUpdater
5 }:
7 buildGoModule {
8   pname = "bodyclose";
9   version = "0-unstable-2024-01-26";
11   src = fetchFromGitHub {
12     owner = "timakin";
13     repo = "bodyclose";
14     rev = "f835fa56326ac81b2d54408f1a3a6c43bca4d5aa";
15     hash = "sha256-yPvBDJx6ECrSLDazdNDRl79iogsZO2qNWHuUuwQoRHU=";
16   };
18   vendorHash = "sha256-8grdJuV8aSETsJr2VazC/3ctfnGh3UgjOWD4/xf3uC8=";
20   ldflags = [ "-s" "-w" ];
22   passthru.updateScript = unstableGitUpdater {};
24   meta = with lib; {
25     description = "Golang linter to check whether HTTP response body is closed and a re-use of TCP connection is not blocked";
26     mainProgram = "bodyclose";
27     homepage = "https://github.com/timakin/bodyclose";
28     license = licenses.mit;
29     maintainers = with maintainers; [ meain ];
30   };