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 {
|
2013-05-13 00:06:53 +02:00
|
|
|
version = "2.0.6";
|
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";
|
2013-05-13 00:06:53 +02:00
|
|
|
sha256 = "1llah9d9ymvdk8asmqslcwnicycxrwb27k8si184n5bfxvnjpjx5";
|
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. */
|
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
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
texLive qt4 python makeWrapper pkgconfig
|
|
|
|
enchant # mythes boost
|
|
|
|
];
|
2010-04-19 21:41:38 +02:00
|
|
|
|
2013-05-13 00:06:53 +02:00
|
|
|
doCheck = true;
|
|
|
|
|
2012-06-18 17:41:18 +02:00
|
|
|
meta = {
|
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
|
|
|
|
homepage = "http://www.lyx.org";
|
|
|
|
license = "GPL2";
|
2013-06-27 20:42:17 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.vcunat ];
|
2012-06-18 17:41:18 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-01-30 20:38:07 +01:00
|
|
|
};
|
|
|
|
}
|