2021-01-17 02:09:27 +00:00
|
|
|
{ fetchurl, lib, mkDerivation, pkg-config, python, file, bc
|
2016-12-04 20:11:28 +00:00
|
|
|
, qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost
|
2010-04-19 20:41:38 +01:00
|
|
|
}:
|
|
|
|
|
2019-09-08 15:28:24 +01:00
|
|
|
mkDerivation rec {
|
2020-12-02 20:24:07 +00:00
|
|
|
version = "2.3.6";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lyx";
|
2008-01-30 19:38:07 +00:00
|
|
|
|
2008-03-27 23:33:10 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.3.x/${pname}-${version}.tar.xz";
|
2020-12-02 20:24:07 +00:00
|
|
|
sha256 = "160whjwwrmxizdakjlkf9xc86bhqfnslw47fixgqq4qhbapcxxkg";
|
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
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2016-12-04 20:11:28 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
qtbase qtsvg python file/*for libmagic*/ bc
|
2016-12-04 20:11:28 +00:00
|
|
|
hunspell makeWrapper # enchant
|
|
|
|
];
|
|
|
|
|
2012-08-07 13:45:18 +01:00
|
|
|
configureFlags = [
|
2016-12-04 20:11:28 +00:00
|
|
|
"--enable-qt5"
|
2012-08-07 13:45:18 +01:00
|
|
|
#"--without-included-boost"
|
|
|
|
/* 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 13:45:18 +01:00
|
|
|
];
|
|
|
|
|
2014-08-14 19:22:55 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-05-12 23:06:53 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-08-14 19:22:55 +01:00
|
|
|
# python is run during runtime to do various tasks
|
2019-09-08 15:28:24 +01:00
|
|
|
qtWrapperArgs = [
|
|
|
|
" --prefix PATH : ${python}/bin"
|
|
|
|
];
|
2014-08-14 19:22:55 +01:00
|
|
|
|
2019-09-08 15:28:24 +01:00
|
|
|
meta = with lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.lyx.org";
|
2014-08-14 19:22:55 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
|
|
|
platforms = platforms.linux;
|
2008-01-30 19:38:07 +00:00
|
|
|
};
|
|
|
|
}
|
2014-08-14 19:22:55 +01:00
|
|
|
|