summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-11-08 00:13:25 +0200
committerGitHub <noreply@github.com>2023-11-08 00:13:25 +0200
commitd24da528443dabfdbda63153e8b33fe8b2fbb15f (patch)
tree3755096ac191b65b3930372ad4f1e8eba4f854ca /pkgs/development/tools
parent878631d48ae937ad0366cd4c6949f712d4029797 (diff)
parentf0011fd103af9ad262448115c1e921d0b73a6c07 (diff)
Merge pull request #265764 from amjoseph-nixpkgs/pr/pythonForBuild
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/fdroidserver/default.nix2
-rw-r--r--pkgs/development/tools/misc/ycmd/default.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/fdroidserver/default.nix b/pkgs/development/tools/fdroidserver/default.nix
index da7b0d662b32a..ee4d64f118f28 100644
--- a/pkgs/development/tools/fdroidserver/default.nix
+++ b/pkgs/development/tools/fdroidserver/default.nix
@@ -47,7 +47,7 @@ buildPythonApplication rec {
   '';
 
   preConfigure = ''
-    ${python3.pythonForBuild.interpreter} setup.py compile_catalog
+    ${python3.pythonOnBuildForHost.interpreter} setup.py compile_catalog
   '';
 
   postInstall = ''
diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix
index f281a70f8029d..ea725b013180b 100644
--- a/pkgs/development/tools/misc/ycmd/default.nix
+++ b/pkgs/development/tools/misc/ycmd/default.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
 
   buildPhase = ''
     export EXTRA_CMAKE_ARGS="-DPATH_TO_LLVM_ROOT=${llvmPackages.libllvm} -DUSE_SYSTEM_ABSEIL=true"
-    ${python.pythonForBuild.interpreter} build.py --system-libclang --clang-completer --ninja
+    ${python.pythonOnBuildForHost.interpreter} build.py --system-libclang --clang-completer --ninja
   '';
 
   dontConfigure = true;