2014-08-14 19:22:55 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig, python, file, bc
|
|
|
|
, qt4, hunspell, makeWrapper #, mythes, boost
|
2010-04-19 20:41:38 +01:00
|
|
|
}:
|
|
|
|
|
2009-10-20 07:57:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-07-03 16:20:24 +01:00
|
|
|
version = "2.1.5";
|
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 {
|
2014-08-14 19:22:55 +01:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/${name}.tar.xz";
|
2016-07-03 16:20:24 +01:00
|
|
|
sha256 = "1wrcxsvr5kx8cfdabshzmcjrb3rmy5bh74njnzpq9m5xms8parrf";
|
2008-01-30 19:38:07 +00:00
|
|
|
};
|
|
|
|
|
2012-08-07 13:45:18 +01:00
|
|
|
configureFlags = [
|
|
|
|
#"--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
|
|
|
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
|
2012-08-07 13:45:18 +01:00
|
|
|
buildInputs = [
|
2014-08-14 19:22:55 +01:00
|
|
|
pkgconfig qt4 python file/*for libmagic*/ bc
|
|
|
|
hunspell makeWrapper # enchant
|
2012-08-07 13:45:18 +01:00
|
|
|
];
|
2010-04-19 20:41:38 +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";
|
2012-06-18 16:41:18 +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
|
|
|
|