Merge pull request #19051 from grwlf/sox-lame-config

sox: read enableLame from the config
This commit is contained in:
Benno Fünfstück 2016-10-02 22:29:43 +02:00 committed by GitHub
commit 9d01cf66a4

View File

@ -14371,7 +14371,9 @@ in
inherit (pkgs.vamp) vampSDK; inherit (pkgs.vamp) vampSDK;
}; };
sox = callPackage ../applications/misc/audio/sox { }; sox = callPackage ../applications/misc/audio/sox {
enableLame = config.sox.enableLame or false;
};
soxr = callPackage ../applications/misc/audio/soxr { }; soxr = callPackage ../applications/misc/audio/soxr { };