lyx added

svn path=/nixpkgs/branches/stdenv-updates/; revision=10430
This commit is contained in:
Yury G. Kudryashov 2008-01-31 10:41:13 +00:00
parent fbfab88e04
commit 21bfc11e8c
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,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";
};
}

View file

@ -4343,6 +4343,11 @@ rec {
inherit fetchurl stdenv ncurses openssl;
};
lyx = import ../applications/misc/lyx {
inherit fetchurl stdenv tetex python;
qt = qt4;
};
maxima = import ../applications/misc/maxima {
inherit fetchurl stdenv clisp;
};