mpd: don't use smbclient alias

didn't eval on Hydra as release.nix doesn't allow aliases, see #44299
Use samba instead.
This commit is contained in:
Uli Baum 2018-08-06 10:07:20 +02:00
parent c3b1a8178b
commit 6820e2f0dd

View file

@ -27,7 +27,7 @@
, opusSupport ? true, libopus
, soundcloudSupport ? true, yajl
, nfsSupport ? true, libnfs
, smbSupport ? true, smbclient
, smbSupport ? true, samba
}:
assert avahiSupport -> avahi != null && dbus != null;
@ -85,7 +85,7 @@ in stdenv.mkDerivation rec {
++ opt opusSupport libopus
++ opt soundcloudSupport yajl
++ opt (!stdenv.isDarwin && nfsSupport) libnfs
++ opt (!stdenv.isDarwin && smbSupport) smbclient;
++ opt (!stdenv.isDarwin && smbSupport) samba;
nativeBuildInputs = [ autoreconfHook pkgconfig ];