about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2017-07-07 09:40:18 +0200
committerGitHub <noreply@github.com>2017-07-07 09:40:18 +0200
commite17054a57aa6808e4e83530d960ee6524cff1303 (patch)
tree31c6663bacda615676a5dbb9bb63b9bd64df1aac /pkgs/applications
parent665dfda8e433de8c12849368869fca12a693014c (diff)
parent3ff40547f0ff932574ec65fb4848ab4696d34d46 (diff)
downloadnixlib-e17054a57aa6808e4e83530d960ee6524cff1303.tar
nixlib-e17054a57aa6808e4e83530d960ee6524cff1303.tar.gz
nixlib-e17054a57aa6808e4e83530d960ee6524cff1303.tar.bz2
nixlib-e17054a57aa6808e4e83530d960ee6524cff1303.tar.lz
nixlib-e17054a57aa6808e4e83530d960ee6524cff1303.tar.xz
nixlib-e17054a57aa6808e4e83530d960ee6524cff1303.tar.zst
nixlib-e17054a57aa6808e4e83530d960ee6524cff1303.zip
Merge pull request #27192 from calvertvl/fix_leo-editor_no-hardcode-python
leo-editor: Don't hardcode pythonX.Ym
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/editors/leo-editor/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/leo-editor/default.nix b/pkgs/applications/editors/leo-editor/default.nix
index 81f9ddd96d29..b05bbd053c1f 100644
--- a/pkgs/applications/editors/leo-editor/default.nix
+++ b/pkgs/applications/editors/leo-editor/default.nix
@@ -50,7 +50,7 @@ stdenv.mkDerivation rec {
     mkdir -p $out/share/leo-editor
     mv * $out/share/leo-editor
 
-    makeWrapper ${python3Packages.python}/bin/python3.5m $out/bin/leo \
+    makeWrapper ${python3Packages.python.interpreter} $out/bin/leo \
       --set PYTHONPATH "$PYTHONPATH:$out/share/leo-editor" \
       --add-flags "-O $out/share/leo-editor/launchLeo.py"
   '';