2008-01-30 20:38:07 +01:00
|
|
|
# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc
|
2012-02-27 08:00:01 +01:00
|
|
|
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
|
2012-03-01 08:04:39 +01:00
|
|
|
, libX11, qt
|
2010-04-19 21:41:38 +02:00
|
|
|
}:
|
|
|
|
|
2009-10-20 08:57:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2011-05-09 18:59:25 +02:00
|
|
|
version = "2.0.0";
|
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";
|
|
|
|
sha256 = "a790951d6ed660b254e82d682b478665f119dd522ab4759fdeb5cd8d42f66f61";
|
2008-01-30 20:38:07 +01:00
|
|
|
};
|
|
|
|
|
2012-03-01 08:04:39 +01:00
|
|
|
buildInputs = [texLive qt python makeWrapper pkgconfig ];
|
2010-04-19 21:41:38 +02: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 20:38:07 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
|
|
|
|
homepage = "http://www.lyx.org";
|
|
|
|
license = "GPL2";
|
|
|
|
};
|
|
|
|
}
|