2012-02-27 07:00:01 +00:00
|
|
|
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
|
2012-08-07 13:45:18 +01:00
|
|
|
, libX11, qt4, enchant #, mythes, boost
|
2010-04-19 20:41:38 +01:00
|
|
|
}:
|
|
|
|
|
2009-10-20 07:57:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2013-01-08 23:53:51 +00:00
|
|
|
version = "2.0.5.1";
|
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 {
|
2011-05-09 17:59:25 +01:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
|
2013-01-08 23:53:51 +00:00
|
|
|
sha256 = "18k9qbz40v6lqmkfcg98wvcv4wi4p36ach1jz3z2b15gbmv2gr9n";
|
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
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
texLive qt4 python makeWrapper pkgconfig
|
|
|
|
enchant # mythes boost
|
|
|
|
];
|
2010-04-19 20:41:38 +01:00
|
|
|
|
2012-06-18 16:41:18 +01: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 19:38:07 +00:00
|
|
|
};
|
|
|
|
}
|