summary refs log tree commit diff
path: root/pkgs/os-specific/linux/libnl
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-02-26 20:26:17 +0000
committerAlyssa Ross <hi@alyssa.is>2023-02-26 20:26:17 +0000
commit2bfa93e01c1574343236b8d0052ad5e2964a363c (patch)
tree80853363e75cac0192efc23c390cc62f552c3fed /pkgs/os-specific/linux/libnl
parent399e2c78d4610a50f7c74ff4b17fecd0b782ba2a (diff)
downloadnixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.tar
nixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.tar.gz
nixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.tar.bz2
nixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.tar.lz
nixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.tar.xz
nixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.tar.zst
nixpkgs-2bfa93e01c1574343236b8d0052ad5e2964a363c.zip
treewide: python{ => .pythonForBuild}.interpreter
It won't be enough to fix cross in all cases, but it is in at least
one: pywayland.  I've only made the change in cases I'm confident it's
correct, as it would be wrong to change this when python.interpreter
is used in wrappers, and possibly when it's used for running tests.
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 08a55134e77..c9eea70db99 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.interpreter} setup.py install --prefix=../pythonlib
+      ${python.pythonForBuild.interpreter} setup.py install --prefix=../pythonlib
       cd -
   '';