summary refs log tree commit diff
path: root/pkgs/applications/misc/lyx/default.nix
blob: faddeb70e998a015a4a05cb53687e572e6ae8a2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc
{ fetchurl, stdenv, texLive, python, makeWrapper
, libX11, qt, xz
}:

stdenv.mkDerivation rec {
  version = "2.0.0";
  name = "lyx-${version}";

  src = fetchurl {
    url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
    sha256 = "a790951d6ed660b254e82d682b478665f119dd522ab4759fdeb5cd8d42f66f61";
  };

  buildInputs = [texLive qt python makeWrapper xz ];

  # don't ask me why it can't find libX11.so.6
  postInstall = ''
    wrapProgram $out/bin/lyx \
      --prefix LD_LIBRARY_PATH ":" ${libX11}/lib
  '';

  meta = { 
      description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
      homepage = "http://www.lyx.org";
      license = "GPL2";
  };
}