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
···
1
1
+
{ lib
2
2
+
, buildGoModule
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
buildGoModule rec {
7
7
+
pname = "bodyclose";
8
8
+
version = "2023-04-21";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "timakin";
12
12
+
repo = "bodyclose";
13
13
+
rev = "574207250966ef48b7c65325648b17ff2c3a900a";
14
14
+
hash = "sha256-qUt8uOk1vgj2rtzTevGh9c4McxbFKgEw83pq7IAlRdg=";
15
15
+
};
16
16
+
17
17
+
vendorHash = "sha256-TSYaY7Rg0ZoXdIN1sTNmgjC4PcVcgwSTuE43FYbzlAs=";
18
18
+
19
19
+
ldflags = [ "-s" "-w" ];
20
20
+
21
21
+
meta = with lib; {
22
22
+
description = "Golang linter to check whether HTTP response body is closed and a re-use of TCP connection is not blocked";
23
23
+
homepage = "https://github.com/timakin/bodyclose";
24
24
+
license = licenses.mit;
25
25
+
maintainers = with maintainers; [ meain ];
26
26
+
};
27
27
+
}
+2
pkgs/top-level/all-packages.nix
···
336
336
inherit (darwin.apple_sdk.frameworks) CoreServices;
337
337
};
338
338
339
339
+
bodyclose = callPackage ../development/tools/bodyclose { };
340
340
+
339
341
bootstrap-studio = callPackage ../development/web/bootstrap-studio { };
340
342
341
343
breakpad = callPackage ../development/misc/breakpad { };