nixpkgs/pkgs/tools/security/nosqli/default.nix

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

26 lines
616 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
};
2021-11-03 16:45:41 +00:00
vendorSha256 = "sha256-QnrzEei4Pt4C0vCJu4YN28lWWAqEikmNLrqshd3knx4=";
2021-01-20 14:35:50 +00:00
meta = with lib; {
description = "NoSql Injection tool for finding vulnerable websites using MongoDB";
homepage = "https://github.com/Charlie-belmer/nosqli";
license = with licenses; [ agpl3Plus ];
maintainers = with maintainers; [ fab ];
};
}