Skip to content

Commit

Permalink
sox: Add WavPack support
Browse files Browse the repository at this point in the history
r128gain's tests include processing some WavPack files with sox.  Allow
opting into linking with wavpack so those tests can be run.
  • Loading branch information
AluisioASG committed Jun 12, 2020
1 parent 23c9c37 commit 09f5bec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/applications/misc/audio/sox/default.nix
Expand Up @@ -8,6 +8,7 @@
, enableFLAC ? true, flac ? null
, enablePNG ? true, libpng ? null
, enableLibsndfile ? true, libsndfile ? null
, enableWavpack ? true, wavpack ? null
# amrnb and amrwb are unfree, disabled by default
, enableAMR ? false, amrnb ? null, amrwb ? null
, enableLibpulseaudio ? true, libpulseaudio ? null
Expand Down Expand Up @@ -36,6 +37,7 @@ stdenv.mkDerivation rec {
optional enableFLAC flac ++
optional enablePNG libpng ++
optional enableLibsndfile libsndfile ++
optional enableWavpack wavpack ++
optionals enableAMR [ amrnb amrwb ] ++
optional enableLibpulseaudio libpulseaudio ++
optional (stdenv.isDarwin) CoreAudio;
Expand Down

0 comments on commit 09f5bec

Please sign in to comment.