nixpkgs/pkgs/by-name/no/nosqli/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
642 B
Nix
Raw Normal View History

2021-01-20 14:35:50 +00:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "nosqli";
2021-11-03 16:45:41 +00:00
version = "0.5.4";
2021-01-20 14:35:50 +00:00
src = fetchFromGitHub {
owner = "Charlie-belmer";
repo = pname;
rev = "v${version}";
2021-11-03 16:45:41 +00:00
sha256 = "sha256-CgD9b5eHDK/8QhQmrqT09Jf9snn9WItNMtTNbJFT2sI=";
2021-01-20 14:35:50 +00:00
};
vendorHash = "sha256-QnrzEei4Pt4C0vCJu4YN28lWWAqEikmNLrqshd3knx4=";
2021-01-20 14:35:50 +00:00
meta = with lib; {
description = "NoSql Injection tool for finding vulnerable websites using MongoDB";
mainProgram = "nosqli";
2021-01-20 14:35:50 +00:00
homepage = "https://github.com/Charlie-belmer/nosqli";
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}