mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
lyx added
svn path=/nixpkgs/trunk/; revision=10416
This commit is contained in:
parent
5bca69ac34
commit
bea41a64b4
18
pkgs/applications/misc/lyx/default.nix
Normal file
18
pkgs/applications/misc/lyx/default.nix
Normal 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";
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user