2014-08-14 19:22:55 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, 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
|
|
|
}:
|
|
|
|
|
2009-10-20 07:57:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-11 16:08:58 +01:00
|
|
|
version = "2.2.3";
|
2009-10-20 07:57:29 +01:00
|
|
|
name = "lyx-${version}";
|
2008-01-30 19:38:07 +00:00
|
|
|
|
2008-03-27 23:33:10 +00:00
|
|
|
src = fetchurl {
|
2016-12-04 20:11:28 +00:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.2.x/${name}.tar.xz";
|
2017-06-11 16:08:58 +01:00
|
|
|
sha256 = "0mrbr24xbdg25gd7w8g76gpmy0a10nrnz0mz47mdjwi441yfpjjg";
|
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
|
|
|
|
buildInputs = [
|
|
|
|
pkgconfig qtbase qtsvg python file/*for libmagic*/ bc
|
|
|
|
hunspell makeWrapper # enchant
|
|
|
|
];
|
|
|
|
|
|
|
|
# bogus configure script tests
|
|
|
|
preConfigure = ''
|
|
|
|
NIX_CFLAGS_COMPILE+=" $(pkg-config --cflags Qt5Core)"
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram "$out/bin/lyx" \
|
|
|
|
--prefix PATH : '${python}/bin'
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook";
|
2017-08-01 21:03:30 +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
|
|
|
|