about summary refs log tree commit diff
path: root/pkgs/by-name/rh/rHttp/package.nix
blob: bd28007dc3611c0f74ae1b98dc26794306a3601d (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
{
  lib,
  buildGoModule,
  fetchFromGitHub,
  ...
}:
buildGoModule {
  pname = "rHttp";
  version = "unstable-2024-04-28";

  src = fetchFromGitHub {
    owner = "1buran";
    repo = "rHttp";
    rev = "9b7da3a0f7c2e35c9d326e7920ded15f806f8113";
    sha256 = "1nz3f6zgpbxlwn6c5rqxa8897ygi5r7h7f6624i27rq9kr729cra";
  };

  vendorHash = "sha256-NR1q44IUSME+x1EOcnXXRoIXw8Av0uH7iXhD+cdd99I=";

  meta = with lib; {
    description = "Go REPL for HTTP";
    homepage = "https://github.com/1buran/rHttp";
    license = licenses.agpl3Plus;
    maintainers = with maintainers; [ luftmensch-luftmensch ];
    mainProgram = "rhttp";
  };
}