2012-02-26 23:00:01 -08:00
|
|
|
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
|
2012-08-07 05:45:18 -07:00
|
|
|
, libX11, qt4, enchant #, mythes, boost
|
2010-04-19 12:41:38 -07:00
|
|
|
}:
|
|
|
|
|
2009-10-19 23:57:29 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-05 05:22:52 -07:00
|
|
|
version = "2.0.4";
|
2009-10-19 23:57:29 -07:00
|
|
|
name = "lyx-${version}";
|
2008-01-30 11:38:07 -08:00
|
|
|
|
2008-03-27 16:33:10 -07:00
|
|
|
src = fetchurl {
|
2011-05-09 09:59:25 -07:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
|
2012-08-05 05:22:52 -07:00
|
|
|
sha256 = "137dzmz1z6aqz9mdj8gmmi0k60s9sfn6gy916j175cwzq6hpncb8";
|
2008-01-30 11:38:07 -08:00
|
|
|
};
|
|
|
|
|
2012-08-07 05:45:18 -07: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. */
|
|
|
|
#"--without-included-mythes" # such a small library isn't worth a split package
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
texLive qt4 python makeWrapper pkgconfig
|
|
|
|
enchant # mythes boost
|
|
|
|
];
|
2010-04-19 12:41:38 -07:00
|
|
|
|
2012-06-18 08:41:18 -07:00
|
|
|
meta = {
|
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
|
|
|
|
homepage = "http://www.lyx.org";
|
|
|
|
license = "GPL2";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.neznalek ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-01-30 11:38:07 -08:00
|
|
|
};
|
|
|
|
}
|