lyx added

svn path=/nixpkgs/trunk/; revision=10416

+23
+18
pkgs/applications/misc/lyx/default.nix
···
··· 1 + # I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc 2 + args: 3 + args.stdenv.mkDerivation { 4 + name = "lyx-1.5.3"; 5 + 6 + src = args.fetchurl { 7 + url = http://lyx.cybermirror.org/stable/lyx-1.5.3.tar.bz2; 8 + sha256 = "1q0xlhrvj87iw9rk9z2vfka4jw5pw7n5fsmmiyzram9y4hghavav"; 9 + }; 10 + 11 + buildInputs =(with args; [tetex qt python]); 12 + 13 + meta = { 14 + description = "WYSIWYM frontend for LaTeX, DocBook, etc."; 15 + homepage = "http://www.lyx.org"; 16 + license = "GPL2"; 17 + }; 18 + }
+5
pkgs/top-level/all-packages.nix
··· 4532 inherit fetchurl stdenv ncurses openssl; 4533 }; 4534 4535 maxima = import ../applications/misc/maxima { 4536 inherit fetchurl stdenv clisp; 4537 };
··· 4532 inherit fetchurl stdenv ncurses openssl; 4533 }; 4534 4535 + lyx = import ../applications/misc/lyx { 4536 + inherit fetchurl stdenv tetex python; 4537 + qt = qt4; 4538 + }; 4539 + 4540 maxima = import ../applications/misc/maxima { 4541 inherit fetchurl stdenv clisp; 4542 };