summary refs log tree commit diff
path: root/pkgs/applications/office
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/applications/office
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/applications/office')
-rw-r--r--pkgs/applications/office/paperless-ngx/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/office/paperless-ngx/default.nix b/pkgs/applications/office/paperless-ngx/default.nix
index d98958a8dfb..c5c291511eb 100644
--- a/pkgs/applications/office/paperless-ngx/default.nix
+++ b/pkgs/applications/office/paperless-ngx/default.nix
@@ -224,13 +224,13 @@ python.pkgs.buildPythonApplication rec {
   postBuild = ''
     # Compile manually because `pythonRecompileBytecodeHook` only works
     # for files in `python.sitePackages`
-    ${python.pythonForBuild.interpreter} -OO -m compileall src
+    ${python.pythonOnBuildForHost.interpreter} -OO -m compileall src
 
     # Collect static files
-    ${python.pythonForBuild.interpreter} src/manage.py collectstatic --clear --no-input
+    ${python.pythonOnBuildForHost.interpreter} src/manage.py collectstatic --clear --no-input
 
     # Compile string translations using gettext
-    ${python.pythonForBuild.interpreter} src/manage.py compilemessages
+    ${python.pythonOnBuildForHost.interpreter} src/manage.py compilemessages
   '';
 
   installPhase = ''