2018-06-17 12:10:50 +02:00
|
|
|
{ fetchurl, stdenv, pkgconfig, python, file, bc, fetchpatch
|
2016-12-04 21:11:28 +01:00
|
|
|
, qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost
|
2010-04-19 21:41:38 +02:00
|
|
|
}:
|
|
|
|
|
2009-10-20 08:57:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-29 23:16:10 +02:00
|
|
|
version = "2.3.0";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "lyx";
|
2008-01-30 20:38:07 +01:00
|
|
|
|
2008-03-28 00:33:10 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.3.x/${pname}-${version}.tar.xz";
|
2018-03-29 23:16:10 +02:00
|
|
|
sha256 = "0axri2h8xkna4mkfchfyyysbjl7s486vx80p5hzj9zgsvdm5a3ri";
|
2008-01-30 20:38:07 +01:00
|
|
|
};
|
|
|
|
|
2016-12-04 21:11:28 +01:00
|
|
|
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2016-12-04 21:11:28 +01:00
|
|
|
buildInputs = [
|
2017-09-14 21:24:37 +02:00
|
|
|
qtbase qtsvg python file/*for libmagic*/ bc
|
2016-12-04 21:11:28 +01:00
|
|
|
hunspell makeWrapper # enchant
|
|
|
|
];
|
|
|
|
|
2012-08-07 14:45:18 +02:00
|
|
|
configureFlags = [
|
2016-12-04 21:11:28 +01:00
|
|
|
"--enable-qt5"
|
2012-08-07 14:45:18 +02: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 16:33:56 +01:00
|
|
|
#"--without-included-mythes" # such a small library isn't worth a separate package
|
2012-08-07 14:45:18 +02:00
|
|
|
];
|
|
|
|
|
2014-08-14 20:22:55 +02:00
|
|
|
enableParallelBuilding = true;
|
2013-05-13 00:06:53 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-08-14 20:22:55 +02:00
|
|
|
# python is run during runtime to do various tasks
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram "$out/bin/lyx" \
|
|
|
|
--prefix PATH : '${python}/bin'
|
|
|
|
'';
|
|
|
|
|
2018-06-17 12:10:50 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/app-office/lyx/files/lyx-2.3.0-qt-5.11.patch?id=07e82fd1fc07bf055c78b81eaa128f8f837da80d";
|
|
|
|
sha256 = "1bnx0il2iv36lnrnyb370wyvww0rd8bphcy6z8d7zmvd3pwhyfql";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2014-08-14 20:22:55 +02:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 11:49:53 +02:00
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = http://www.lyx.org;
|
2014-08-14 20:22:55 +02:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
|
|
|
platforms = platforms.linux;
|
2008-01-30 20:38:07 +01:00
|
|
|
};
|
|
|
|
}
|
2014-08-14 20:22:55 +02:00
|
|
|
|