mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #90172 from AluisioASG/aasg/sox-wv
sox: Add WavPack support
This commit is contained in:
commit
cb5a4de2b9
@ -8,6 +8,7 @@
|
|||||||
, enableFLAC ? true, flac ? null
|
, enableFLAC ? true, flac ? null
|
||||||
, enablePNG ? true, libpng ? null
|
, enablePNG ? true, libpng ? null
|
||||||
, enableLibsndfile ? true, libsndfile ? null
|
, enableLibsndfile ? true, libsndfile ? null
|
||||||
|
, enableWavpack ? true, wavpack ? null
|
||||||
# amrnb and amrwb are unfree, disabled by default
|
# amrnb and amrwb are unfree, disabled by default
|
||||||
, enableAMR ? false, amrnb ? null, amrwb ? null
|
, enableAMR ? false, amrnb ? null, amrwb ? null
|
||||||
, enableLibpulseaudio ? true, libpulseaudio ? null
|
, enableLibpulseaudio ? true, libpulseaudio ? null
|
||||||
@ -36,6 +37,7 @@ stdenv.mkDerivation rec {
|
|||||||
optional enableFLAC flac ++
|
optional enableFLAC flac ++
|
||||||
optional enablePNG libpng ++
|
optional enablePNG libpng ++
|
||||||
optional enableLibsndfile libsndfile ++
|
optional enableLibsndfile libsndfile ++
|
||||||
|
optional enableWavpack wavpack ++
|
||||||
optionals enableAMR [ amrnb amrwb ] ++
|
optionals enableAMR [ amrnb amrwb ] ++
|
||||||
optional enableLibpulseaudio libpulseaudio ++
|
optional enableLibpulseaudio libpulseaudio ++
|
||||||
optional (stdenv.isDarwin) CoreAudio;
|
optional (stdenv.isDarwin) CoreAudio;
|
||||||
|
Loading…
Reference in New Issue
Block a user