ruler: init at 2.4.1

This commit is contained in:
Fabian Affolter 2022-10-14 16:18:27 +02:00
parent 5601789677
commit 72759fa990
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 { }; run = callPackage ../development/tools/run { };
ruler = callPackage ../tools/security/ruler { };
mblock-mlink = callPackage ../development/tools/mblock-mlink { }; mblock-mlink = callPackage ../development/tools/mblock-mlink { };
mod = callPackage ../development/tools/mod { }; mod = callPackage ../development/tools/mod { };