lyx: use python3

+3 -3
+3 -3
pkgs/applications/misc/lyx/default.nix
··· 1 - { fetchurl, lib, mkDerivation, pkg-config, python, file, bc 1 + { fetchurl, lib, mkDerivation, pkg-config, python3, file, bc 2 2 , qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost 3 3 }: 4 4 ··· 14 14 # LaTeX is used from $PATH, as people often want to have it with extra pkgs 15 15 nativeBuildInputs = [ pkg-config ]; 16 16 buildInputs = [ 17 - qtbase qtsvg python file/*for libmagic*/ bc 17 + qtbase qtsvg python3 file/*for libmagic*/ bc 18 18 hunspell makeWrapper # enchant 19 19 ]; 20 20 ··· 31 31 32 32 # python is run during runtime to do various tasks 33 33 qtWrapperArgs = [ 34 - " --prefix PATH : ${python}/bin" 34 + " --prefix PATH : ${python3}/bin" 35 35 ]; 36 36 37 37 meta = with lib; {