Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / le / legba / package.nix
blob0ac2c5718726f0dcd17f2e65d4ff09f3faed4a71
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , cmake
5 , pkg-config
6 , openssl
7 , samba
8 }:
10 rustPlatform.buildRustPackage rec {
11   pname = "legba";
12   version = "0.9.0";
14   src = fetchFromGitHub {
15     owner = "evilsocket";
16     repo = "legba";
17     rev = "v${version}";
18     hash = "sha256-emj2N3S26Nm0UiHGZIraCJN07rJNOMvdWRoUbHneknY=";
19   };
21   cargoHash = "sha256-viDfJ214Zf5segjrLSTbHav5T5e219NAF+MvuPow+JQ=";
23   nativeBuildInputs = [ cmake pkg-config ];
24   buildInputs = [ openssl.dev samba ];
26   # Paho C test fails due to permission issue
27   doCheck = false;
29   meta = with lib; {
30     description = "Multiprotocol credentials bruteforcer / password sprayer and enumerator";
31     homepage = "https://github.com/evilsocket/legba";
32     changelog = "https://github.com/evilsocket/legba/releases/tag/v${version}";
33     license = licenses.gpl3Only;
34     maintainers = with maintainers; [ mikaelfangel ];
35     mainProgram = "legba";
36   };