nixpkgs/pkgs/tools/security/nosqli/default.nix
Fabián Heredia Montiel ff323ed355 treewide: vendorSha256 → vendorHash
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
2023-09-13 01:03:44 -06:00

26 lines
614 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "nosqli";
version = "0.5.4";
src = fetchFromGitHub {
owner = "Charlie-belmer";
repo = pname;
rev = "v${version}";
sha256 = "sha256-CgD9b5eHDK/8QhQmrqT09Jf9snn9WItNMtTNbJFT2sI=";
};
vendorHash = "sha256-QnrzEei4Pt4C0vCJu4YN28lWWAqEikmNLrqshd3knx4=";
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 ];
};
}