python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / ruler / default.nix
blobb6505533aa825fa34ccc6aeb06bc07dbe6e135bb
1 { lib
2 , stdenv
3 , buildGoModule
4 , fetchFromGitHub
5 }:
7 buildGoModule rec {
8   pname = "ruler";
9   version = "2.4.1";
11   src = fetchFromGitHub {
12     owner = "sensepost";
13     repo = pname;
14     rev = version;
15     hash = "sha256-cEYpK1LB9b65xr6MCMax1vUtSWefjJdXNs4sPgx65d0=";
16   };
18   vendorHash = "sha256-ITd3cvZmRBWK3922dDRvNHNH8KzHoVfIQI6S318ibxA=";
20   meta = with lib; {
21     description = "Tool to abuse Exchange services";
22     homepage = "https://github.com/sensepost/ruler";
23     license = with licenses; [ cc-by-nc-40 ];
24     maintainers = with maintainers; [ fab ];
25   };