2008-01-30 20:38:07 +01:00
|
|
|
# I haven't put much effort into this expressions .. so some optional depencencies may be missing - Marc
|
2008-03-28 00:33:10 +01:00
|
|
|
args: with args;
|
2009-10-20 08:57:29 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.6.4";
|
|
|
|
name = "lyx-${version}";
|
2008-01-30 20:38:07 +01:00
|
|
|
|
2008-03-28 00:33:10 +01:00
|
|
|
src = fetchurl {
|
2009-10-20 08:57:29 +02:00
|
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/1.6.x/${name}.tar.bz2";
|
|
|
|
sha256 = "1b56e53e6884a9f1417811c03e5c986d79955444e8169244a2b80b0709223d15";
|
2008-01-30 20:38:07 +01:00
|
|
|
};
|
|
|
|
|
2008-03-28 00:33:10 +01:00
|
|
|
buildInputs = [texLive qt python];
|
2008-01-30 20:38:07 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "WYSIWYM frontend for LaTeX, DocBook, etc.";
|
|
|
|
homepage = "http://www.lyx.org";
|
|
|
|
license = "GPL2";
|
|
|
|
};
|
|
|
|
}
|