about summary refs log tree commit diff
path: root/pkgs/by-name/no/nomore403/package.nix
blob: 074db314f10a54d846e933e5d8bdc30a39e2e73a (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
32
33
34
35
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "nomore403";
  version = "1.0.1";

  src = fetchFromGitHub {
    owner = "devploit";
    repo = "nomore403";
    rev = "refs/tags/${version}";
    hash = "sha256-qA1i8l2oBQQ5IF8ho3K2k+TAndUTFGwb2NfhyFqfKzU=";
  };

  vendorHash = "sha256-IGnTbuaQH8A6aKyahHMd2RyFRh4WxZ3Vx/A9V3uelRg=";

  ldflags = [
    "-s"
    "-w"
    "-X=main.Version=${version}"
    "-X=main.BuildDate=1970-01-01T00:00:00Z"
  ];

  meta = with lib; {
    description = "Tool to bypass 403/40X response codes";
    homepage = "https://github.com/devploit/nomore403";
    changelog = "https://github.com/devploit/nomore403/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ fab ];
    mainProgram = "nomore403";
  };
}