about summary refs log tree commit diff
path: root/pkgs/applications/misc/lyx/default.nix
blob: 246b8caa3ca0a3b02dc8360849dc9004ba6ee218 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc
args:
args.stdenv.mkDerivation {
  name = "lyx-1.5.3";

  src = args.fetchurl {
    url = http://lyx.cybermirror.org/stable/lyx-1.5.3.tar.bz2;
    sha256 = "1q0xlhrvj87iw9rk9z2vfka4jw5pw7n5fsmmiyzram9y4hghavav";
  };

  buildInputs =(with args; [tetex qt python]);

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