Skip to content

Commit

Permalink
Merge pull request #305115 from fabaff/nomore403
Browse files Browse the repository at this point in the history
nomore403: init at 1.0.1
  • Loading branch information
fabaff authored Apr 19, 2024
2 parents b196712 + 2e37446 commit 1bfef60
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/by-name/no/nomore403/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,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";
};
}

0 comments on commit 1bfef60

Please sign in to comment.