Commit 37586a74 authored by Justus Perlwitz's avatar Justus Perlwitz Committed by Pascal Bach
Browse files

thc-hydra: add samba to enable smb2 support

This allows using hydra with smb2. For example, to list all available
smb2 module options in hydra, run:

hydra -U smb2
parent beebab82
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
{ stdenv, lib, fetchFromGitHub, zlib, openssl, ncurses, libidn, pcre, libssh, libmysqlclient, postgresql
{ stdenv, lib, fetchFromGitHub, zlib, openssl, ncurses, libidn, pcre, libssh, libmysqlclient, postgresql, samba
, withGUI ? false, makeWrapper, pkg-config, gtk2 }:

stdenv.mkDerivation rec {
@@ -29,6 +29,7 @@ stdenv.mkDerivation rec {

  buildInputs = [
    zlib openssl ncurses libidn pcre libssh libmysqlclient postgresql
    samba
  ] ++ lib.optional withGUI gtk2;

  enableParallelBuilding = true;