summary refs log tree commit diff
path: root/pkgs/tools/audio
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2023-11-05 17:38:24 -0800
committerAdam Joseph <adam@westernsemico.com>2023-11-05 17:42:12 -0800
commitbc2d5988780f02c26daea44016df56a1dc4fb8e2 (patch)
tree10af40499507a484c1c69e54fa5747e27797c7c4 /pkgs/tools/audio
parent4f649d67d5abd9e8463136fa6b2be50a32b6f64e (diff)
downloadnixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.tar
nixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.tar.gz
nixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.tar.bz2
nixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.tar.lz
nixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.tar.xz
nixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.tar.zst
nixpkgs-bc2d5988780f02c26daea44016df56a1dc4fb8e2.zip
treewide: change pythonForBuild to pythonOnBuildForHost
Diffstat (limited to 'pkgs/tools/audio')
-rw-r--r--pkgs/tools/audio/tts/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/audio/tts/default.nix b/pkgs/tools/audio/tts/default.nix
index 78adea9d222..f6b1f6d9f66 100644
--- a/pkgs/tools/audio/tts/default.nix
+++ b/pkgs/tools/audio/tts/default.nix
@@ -103,7 +103,7 @@ python.pkgs.buildPythonApplication rec {
     # cython modules are not installed for some reasons
     (
       cd TTS/tts/utils/monotonic_align
-      ${python.pythonForBuild.interpreter} setup.py install --prefix=$out
+      ${python.pythonOnBuildForHost.interpreter} setup.py install --prefix=$out
     )
   '';