at 24.05-pre 25 lines 561 B view raw
1{ lib 2, buildGoModule 3, fetchFromGitHub 4}: 5 6buildGoModule rec { 7 pname = "ruler"; 8 version = "2.4.1"; 9 10 src = fetchFromGitHub { 11 owner = "sensepost"; 12 repo = pname; 13 rev = version; 14 hash = "sha256-cEYpK1LB9b65xr6MCMax1vUtSWefjJdXNs4sPgx65d0="; 15 }; 16 17 vendorHash = "sha256-ITd3cvZmRBWK3922dDRvNHNH8KzHoVfIQI6S318ibxA="; 18 19 meta = with lib; { 20 description = "Tool to abuse Exchange services"; 21 homepage = "https://github.com/sensepost/ruler"; 22 license = with licenses; [ cc-by-nc-40 ]; 23 maintainers = with maintainers; [ fab ]; 24 }; 25}