1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

texworks: fix qt build

This commit is contained in:
Jonathan Ringer 2020-03-18 12:53:54 -07:00 committed by Jon
parent 12be6698e8
commit aaefb947ea
2 changed files with 7 additions and 7 deletions

View file

@ -1,9 +1,9 @@
{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig
, qt5, libsForQt5, hunspell
{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
, qtscript, poppler, hunspell
, withLua ? true, lua
, withPython ? true, python3 }:
stdenv.mkDerivation rec {
mkDerivation rec {
pname = "texworks";
version = "0.6.4";
@ -14,15 +14,15 @@ stdenv.mkDerivation rec {
sha256 = "0d7f23c6c1wj4aii4h5w9piv01qfb69zrd79dvxwydrk99i8gnl4";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ qt5.qtscript libsForQt5.poppler hunspell ]
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ qtscript poppler hunspell ]
++ lib.optional withLua lua
++ lib.optional withPython python3;
cmakeFlags = lib.optional withLua "-DWITH_LUA=ON"
++ lib.optional withPython "-DWITH_PYTHON=ON";
meta = with stdenv.lib; {
meta = with lib; {
description = "Simple TeX front-end program inspired by TeXShop";
homepage = "http://www.tug.org/texworks/";
license = licenses.gpl2Plus;

View file

@ -6855,7 +6855,7 @@ in
textadept = callPackage ../applications/editors/textadept { };
texworks = callPackage ../applications/editors/texworks { };
texworks = libsForQt5.callPackage ../applications/editors/texworks { };
thc-hydra = callPackage ../tools/security/thc-hydra { };