summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libnl
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/os-specific/linux/libnl
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/os-specific/linux/libnl')
-rw-r--r--pkgs/os-specific/linux/libnl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/libnl/default.nix b/pkgs/os-specific/linux/libnl/default.nix
index c9eea70db99..5248c263b3b 100644
--- a/pkgs/os-specific/linux/libnl/default.nix
+++ b/pkgs/os-specific/linux/libnl/default.nix
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
 
   postBuild = lib.optionalString (pythonSupport) ''
       cd python
-      ${python.pythonForBuild.interpreter} setup.py install --prefix=../pythonlib
+      ${python.pythonOnBuildForHost.interpreter} setup.py install --prefix=../pythonlib
       cd -
   '';