about summary refs log tree commit diff
path: root/pkgs/applications/misc/lyx
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2023-04-08 12:09:07 -0700
committerAdam Joseph <adam@westernsemico.com>2023-04-08 12:09:36 -0700
commit0981043da85f5efdf5057ce52b0f30f5811987a6 (patch)
treedf231e39f357d010e074d078653fff8afb41a35e /pkgs/applications/misc/lyx
parent584278eface16359dec7839e001b80a7db7347d9 (diff)
lyx: fix cross
python3 is a nativeBuildInput, not a buildInput
Diffstat (limited to 'pkgs/applications/misc/lyx')
-rw-r--r--pkgs/applications/misc/lyx/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix
index 921ae570bca0b..10dbb2c6a74b4 100644
--- a/pkgs/applications/misc/lyx/default.nix
+++ b/pkgs/applications/misc/lyx/default.nix
@@ -18,9 +18,9 @@ mkDerivation rec {
   '';
 
   # LaTeX is used from $PATH, as people often want to have it with extra pkgs
-  nativeBuildInputs = [ pkg-config makeWrapper ];
+  nativeBuildInputs = [ pkg-config makeWrapper python3 ];
   buildInputs = [
-    qtbase qtsvg python3 file/*for libmagic*/ bc
+    qtbase qtsvg file/*for libmagic*/ bc
     hunspell # enchant
   ];