tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
lyx added
svn path=/nixpkgs/trunk/; revision=10416
Marc Weber
18 years ago
bea41a64
5bca69ac
+23
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
lyx
default.nix
top-level
all-packages.nix
+18
pkgs/applications/misc/lyx/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
0
0
0
0
0
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
};