Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
709 B
Nix
Raw Permalink Normal View History

2024-05-17 09:51:53 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
2022-10-14 16:18:27 +02:00
}:
buildGoModule rec {
pname = "ruler";
version = "2.4.1";
src = fetchFromGitHub {
owner = "sensepost";
2024-05-17 09:51:27 +02:00
repo = "ruler";
tag = version;
2022-10-14 16:18:27 +02:00
hash = "sha256-cEYpK1LB9b65xr6MCMax1vUtSWefjJdXNs4sPgx65d0=";
};
vendorHash = "sha256-ITd3cvZmRBWK3922dDRvNHNH8KzHoVfIQI6S318ibxA=";
2024-05-17 09:51:27 +02:00
ldflags = [
"-w"
"-s"
];
2025-06-06 21:58:04 +02:00
meta = {
2022-10-14 16:18:27 +02:00
description = "Tool to abuse Exchange services";
homepage = "https://github.com/sensepost/ruler";
2024-05-17 09:51:27 +02:00
changelog = "https://github.com/sensepost/ruler/releases/tag/${version}";
2025-06-06 21:58:04 +02:00
license = with lib.licenses; [ cc-by-nc-40 ];
maintainers = with lib.maintainers; [ fab ];
2024-05-17 09:51:27 +02:00
mainProgram = "ruler";
2022-10-14 16:18:27 +02:00
};
}