Merge pull request #195987 from fabaff/ruler

ruler: init at 2.4.1
This commit is contained in:
Jonas Heinrich 2022-10-15 09:38:54 +02:00 committed by GitHub
commit 5fbcf2577a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "ruler";
version = "2.4.1";
src = fetchFromGitHub {
owner = "sensepost";
repo = pname;
rev = version;
hash = "sha256-cEYpK1LB9b65xr6MCMax1vUtSWefjJdXNs4sPgx65d0=";
};
vendorHash = "sha256-ITd3cvZmRBWK3922dDRvNHNH8KzHoVfIQI6S318ibxA=";
meta = with lib; {
description = "Tool to abuse Exchange services";
homepage = "https://github.com/sensepost/ruler";
# Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License
# https://github.com/sensepost/ruler/blob/master/LICENSE
license = with licenses; [ unfree ];
maintainers = with maintainers; [ fab ];
};
}

View file

@ -763,6 +763,8 @@ with pkgs;
run = callPackage ../development/tools/run { };
ruler = callPackage ../tools/security/ruler { };
mblock-mlink = callPackage ../development/tools/mblock-mlink { };
mod = callPackage ../development/tools/mod { };