tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
bodyclose: init at 2023-04-21
Abin Simon
2 years ago
3be4449a
1fb3ea2d
+29
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
bodyclose
default.nix
top-level
all-packages.nix
+27
pkgs/development/tools/bodyclose/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ lib
2
+
, buildGoModule
3
+
, fetchFromGitHub
4
+
}:
5
+
6
+
buildGoModule rec {
7
+
pname = "bodyclose";
8
+
version = "2023-04-21";
9
+
10
+
src = fetchFromGitHub {
11
+
owner = "timakin";
12
+
repo = "bodyclose";
13
+
rev = "574207250966ef48b7c65325648b17ff2c3a900a";
14
+
hash = "sha256-qUt8uOk1vgj2rtzTevGh9c4McxbFKgEw83pq7IAlRdg=";
15
+
};
16
+
17
+
vendorHash = "sha256-TSYaY7Rg0ZoXdIN1sTNmgjC4PcVcgwSTuE43FYbzlAs=";
18
+
19
+
ldflags = [ "-s" "-w" ];
20
+
21
+
meta = with lib; {
22
+
description = "Golang linter to check whether HTTP response body is closed and a re-use of TCP connection is not blocked";
23
+
homepage = "https://github.com/timakin/bodyclose";
24
+
license = licenses.mit;
25
+
maintainers = with maintainers; [ meain ];
26
+
};
27
+
}
+2
pkgs/top-level/all-packages.nix
···
336
inherit (darwin.apple_sdk.frameworks) CoreServices;
337
};
338
0
0
339
bootstrap-studio = callPackage ../development/web/bootstrap-studio { };
340
341
breakpad = callPackage ../development/misc/breakpad { };
···
336
inherit (darwin.apple_sdk.frameworks) CoreServices;
337
};
338
339
+
bodyclose = callPackage ../development/tools/bodyclose { };
340
+
341
bootstrap-studio = callPackage ../development/web/bootstrap-studio { };
342
343
breakpad = callPackage ../development/misc/breakpad { };