2008-01-30 11:38:07 -08:00
|
|
|
# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc
|
2012-02-26 23:00:01 -08:00
|
|
|
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
|
2012-02-29 23:04:39 -08:00
|
|
|
, libX11, qt
|
2010-04-19 12:41:38 -07:00
|
|
|
}:
|
|
|
|
|
2009-10-19 23:57:29 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2011-05-09 09:59:25 -07:00
|
|
|
version = "2.0.0";
|
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";
|
|
|
|
sha256 = "a790951d6ed660b254e82d682b478665f119dd522ab4759fdeb5cd8d42f66f61";
|
2008-01-30 11:38:07 -08:00
|
|
|
};
|
|
|
|
|
2012-02-29 23:04:39 -08:00
|
|
|
buildInputs = [texLive qt python makeWrapper pkgconfig ];
|
2010-04-19 12:41:38 -07:00
|
|
|
|
|
|
|
# don't ask me why it can't find libX11.so.6
|
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/lyx \
|
|
|
|
--prefix LD_LIBRARY_PATH ":" ${libX11}/lib
|
|
|
|
'';
|
2008-01-30 11:38:07 -08:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
|
|
|
|
homepage = "http://www.lyx.org";
|
|
|
|
license = "GPL2";
|
|
|
|
};
|
|
|
|
}
|