lyx added

svn path=/nixpkgs/trunk/; revision=10416
This commit is contained in:
Marc Weber 2008-01-30 19:38:07 +00:00
parent 5bca69ac34
commit bea41a64b4
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

@ -4532,6 +4532,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;
};