summary refs log tree commit diff
path: root/pkgs/applications/editors/leo-editor
diff options
context:
space:
mode:
authorVictor Calvert <calvertvl@gmail.com>2017-07-05 21:36:04 -0400
committerVictor Calvert <calvertvl@gmail.com>2017-07-06 18:42:38 -0400
commit3ff40547f0ff932574ec65fb4848ab4696d34d46 (patch)
treefb5561539f03598d306e860d0c676e74e2decfa0 /pkgs/applications/editors/leo-editor
parentf834ce36a183a5a53d210960ade9c968cf32f895 (diff)
downloadnixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.tar
nixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.tar.gz
nixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.tar.bz2
nixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.tar.lz
nixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.tar.xz
nixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.tar.zst
nixpkgs-3ff40547f0ff932574ec65fb4848ab4696d34d46.zip
leo-editor: Don't hardcode pythonX.Ym
Diffstat (limited to 'pkgs/applications/editors/leo-editor')
-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 81f9ddd96d2..b05bbd053c1 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"
   '';