From 0981043da85f5efdf5057ce52b0f30f5811987a6 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Sat, 8 Apr 2023 12:09:07 -0700 Subject: [PATCH] lyx: fix cross python3 is a nativeBuildInput, not a buildInput --- pkgs/applications/misc/lyx/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/lyx/default.nix b/pkgs/applications/misc/lyx/default.nix index 921ae570bca..10dbb2c6a74 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 ];