mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
mpd: clean up some flags
Some changed, some are no longer used.
This commit is contained in:
parent
8f5f9f6c6b
commit
43c6bfc0c9
1 changed files with 2 additions and 7 deletions
|
@ -8,10 +8,8 @@
|
|||
, shoutSupport ? true, libshout
|
||||
, sqliteSupport ? true, sqlite
|
||||
, curlSupport ? true, curl
|
||||
, soupSupport ? true, libsoup
|
||||
, audiofileSupport ? true, audiofile
|
||||
, bzip2Support ? true, bzip2
|
||||
, ffadoSupport ? true, ffado
|
||||
, ffmpegSupport ? true, ffmpeg
|
||||
, fluidsynthSupport ? true, fluidsynth
|
||||
, zipSupport ? true, zziplib
|
||||
|
@ -48,10 +46,8 @@ in stdenv.mkDerivation rec {
|
|||
++ opt shoutSupport libshout
|
||||
++ opt sqliteSupport sqlite
|
||||
++ opt curlSupport curl
|
||||
++ opt soupSupport libsoup
|
||||
++ opt bzip2Support bzip2
|
||||
++ opt audiofileSupport audiofile
|
||||
++ opt (!stdenv.isDarwin && ffadoSupport) ffado
|
||||
++ opt ffmpegSupport ffmpeg
|
||||
++ opt fluidsynthSupport fluidsynth
|
||||
++ opt samplerateSupport libsamplerate
|
||||
|
@ -72,10 +68,8 @@ in stdenv.mkDerivation rec {
|
|||
(mkFlag shoutSupport "shout")
|
||||
(mkFlag sqliteSupport "sqlite")
|
||||
(mkFlag curlSupport "curl")
|
||||
(mkFlag soupSupport "soup")
|
||||
(mkFlag audiofileSupport "audiofile")
|
||||
(mkFlag bzip2Support "bzip2")
|
||||
(mkFlag (!stdenv.isDarwin && ffadoSupport) "ffado")
|
||||
(mkFlag ffmpegSupport "ffmpeg")
|
||||
(mkFlag fluidsynthSupport "fluidsynth")
|
||||
(mkFlag zipSupport "zzip")
|
||||
|
@ -85,7 +79,8 @@ in stdenv.mkDerivation rec {
|
|||
(mkFlag aacSupport "aac")
|
||||
(mkFlag pulseaudioSupport "pulse")
|
||||
(mkFlag stdenv.isDarwin "osx")
|
||||
"--enable-debugging" ]
|
||||
"--enable-debug"
|
||||
]
|
||||
++ opt stdenv.isLinux
|
||||
"--with-systemdsystemunitdir=$(out)/etc/systemd/system";
|
||||
|
||||
|
|
Loading…
Reference in a new issue