nixos/mpd: allow storage plugins in musicDirectory
This commit is contained in:
parent
fbcc4daff7
commit
b9234ea49c
@ -55,11 +55,11 @@ in {
|
||||
};
|
||||
|
||||
musicDirectory = mkOption {
|
||||
type = types.path;
|
||||
type = with types; either path (strMatching "(http|https|nfs|smb)://.+");
|
||||
default = "${cfg.dataDir}/music";
|
||||
defaultText = ''''${dataDir}/music'';
|
||||
description = ''
|
||||
The directory where mpd reads music from.
|
||||
The directory or NFS/SMB network share where mpd reads music from.
|
||||
'';
|
||||
};
|
||||
|
||||
|
@ -84,8 +84,8 @@ in stdenv.mkDerivation rec {
|
||||
++ opt clientSupport mpd_clientlib
|
||||
++ opt opusSupport libopus
|
||||
++ opt soundcloudSupport yajl
|
||||
++ opt nfsSupport libnfs
|
||||
++ opt smbSupport smbclient;
|
||||
++ opt (!stdenv.isDarwin && nfsSupport) libnfs
|
||||
++ opt (!stdenv.isDarwin && smbSupport) smbclient;
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
||||
@ -120,8 +120,8 @@ in stdenv.mkDerivation rec {
|
||||
(mkFlag clientSupport "libmpdclient")
|
||||
(mkFlag opusSupport "opus")
|
||||
(mkFlag soundcloudSupport "soundcloud")
|
||||
(mkFlag nfsSupport "libnfs")
|
||||
(mkFlag smbSupport "smbclient")
|
||||
(mkFlag (!stdenv.isDarwin && nfsSupport) "libnfs")
|
||||
(mkFlag (!stdenv.isDarwin && smbSupport) "smbclient")
|
||||
"--enable-debug"
|
||||
"--with-zeroconf=avahi"
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user