2012-02-27 08:00:01 +01:00
|
|
|
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
|
2012-08-07 14:45:18 +02:00
|
|
|
, libX11, qt4, enchant #, mythes, boost
|
2010-04-19 21:41:38 +02:00
|
|
|
}:
|
|
|
|
|
2009-10-20 08:57:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-05 14:22:52 +02:00
|
|
|
version = "2.0.4";
|
2009-10-20 08:57:29 +02:00
|
|
|
name = "lyx-${version}";
|
2008-01-30 20:38:07 +01:00
|
|
|
|
2008-03-28 00:33:10 +01:00
|
|
|
src = fetchurl {
|
2011-05-09 18:59:25 +02:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
|
2012-08-05 14:22:52 +02:00
|
|
|
sha256 = "137dzmz1z6aqz9mdj8gmmi0k60s9sfn6gy916j175cwzq6hpncb8";
|
2008-01-30 20:38:07 +01:00
|
|
|
};
|
|
|
|
|
2012-08-07 14:45:18 +02: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 21:41:38 +02:00
|
|
|
|
2012-06-18 17:41:18 +02: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 20:38:07 +01:00
|
|
|
};
|
|
|
|
}
|