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;
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "lyx-1.5.4";
|
2008-01-30 20:38:07 +01:00
|
|
|
|
2008-03-28 00:33:10 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = http://lyx.cybermirror.org/stable/lyx-1.5.4.tar.bz2;
|
|
|
|
sha256 = "6c8b9aafc287ee683b68ebb08166e660e27af9942a30291f14c18de39aca8f2b";
|
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";
|
|
|
|
};
|
|
|
|
}
|