2024-07-21 15:59:21 +00:00
|
|
|
{
|
|
|
|
fetchurl,
|
|
|
|
lib,
|
|
|
|
mkDerivation,
|
|
|
|
pkg-config,
|
|
|
|
python3,
|
|
|
|
file,
|
|
|
|
bc,
|
|
|
|
qtbase,
|
|
|
|
qtsvg,
|
|
|
|
hunspell,
|
|
|
|
makeWrapper, # , mythes, boost
|
2010-04-19 19:41:38 +00:00
|
|
|
}:
|
|
|
|
|
2019-09-08 14:28:24 +00:00
|
|
|
mkDerivation rec {
|
2024-10-17 11:27:15 +00:00
|
|
|
version = "2.4.2.1";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "lyx";
|
2008-01-30 19:38:07 +00:00
|
|
|
|
2008-03-27 23:33:10 +00:00
|
|
|
src = fetchurl {
|
2024-07-21 16:10:46 +00:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.4.x/${pname}-${version}.tar.xz";
|
2024-10-17 11:27:15 +00:00
|
|
|
hash = "sha256-HSscer45Hi+0kQneLI4Tp9/mBfJ99o9om/lH36/HpNk=";
|
2008-01-30 19:38:07 +00:00
|
|
|
};
|
|
|
|
|
2016-12-04 20:11:28 +00:00
|
|
|
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
|
2024-07-21 15:59:21 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkg-config
|
|
|
|
makeWrapper
|
|
|
|
python3
|
|
|
|
qtbase
|
|
|
|
];
|
2016-12-04 20:11:28 +00:00
|
|
|
buildInputs = [
|
2024-07-21 15:59:21 +00:00
|
|
|
qtbase
|
|
|
|
qtsvg
|
|
|
|
file # for libmagic
|
|
|
|
bc
|
2022-08-15 03:40:21 +00:00
|
|
|
hunspell # enchant
|
2016-12-04 20:11:28 +00:00
|
|
|
];
|
|
|
|
|
2012-08-07 12:45:18 +00:00
|
|
|
configureFlags = [
|
2016-12-04 20:11:28 +00:00
|
|
|
"--enable-qt5"
|
2012-08-07 12:45:18 +00:00
|
|
|
#"--without-included-boost"
|
2024-07-21 15:59:21 +00:00
|
|
|
/*
|
|
|
|
Boost is a huge dependency from which 1.4 MB of libs would be used.
|
|
|
|
Using internal boost stuff only increases executable by around 0.2 MB.
|
|
|
|
*/
|
2013-01-01 15:33:56 +00:00
|
|
|
#"--without-included-mythes" # such a small library isn't worth a separate package
|
2012-08-07 12:45:18 +00:00
|
|
|
];
|
|
|
|
|
2014-08-14 18:22:55 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-05-12 22:06:53 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-08-14 18:22:55 +00:00
|
|
|
# python is run during runtime to do various tasks
|
2024-07-21 15:59:21 +00:00
|
|
|
qtWrapperArgs = [ " --prefix PATH : ${python3}/bin" ];
|
2014-08-14 18:22:55 +00:00
|
|
|
|
2019-09-08 14:28:24 +00:00
|
|
|
meta = with lib; {
|
2013-10-06 09:49:53 +00:00
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.lyx.org";
|
2014-08-14 18:22:55 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
|
|
|
platforms = platforms.linux;
|
2008-01-30 19:38:07 +00:00
|
|
|
};
|
|
|
|
}
|