nixpkgs/pkgs/by-name/le/legba/package.nix

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

38 lines
917 B
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchFromGitHub
, cmake
, pkg-config
, openssl
2023-12-18 20:56:01 +00:00
, samba
}:
rustPlatform.buildRustPackage rec {
pname = "legba";
2024-05-28 14:12:49 +01:00
version = "0.9.0";
src = fetchFromGitHub {
owner = "evilsocket";
repo = "legba";
rev = "v${version}";
2024-05-28 14:12:49 +01:00
hash = "sha256-emj2N3S26Nm0UiHGZIraCJN07rJNOMvdWRoUbHneknY=";
};
2024-05-28 14:12:49 +01:00
cargoHash = "sha256-viDfJ214Zf5segjrLSTbHav5T5e219NAF+MvuPow+JQ=";
nativeBuildInputs = [ cmake pkg-config ];
2023-12-18 20:56:01 +00:00
buildInputs = [ openssl.dev samba ];
# Paho C test fails due to permission issue
doCheck = false;
meta = with lib; {
description = "Multiprotocol credentials bruteforcer / password sprayer and enumerator";
homepage = "https://github.com/evilsocket/legba";
changelog = "https://github.com/evilsocket/legba/releases/tag/v${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ mikaelfangel ];
mainProgram = "legba";
};
}