083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
36 lines
990 B
Nix
36 lines
990 B
Nix
{ fetchurl, stdenv, texLive, python, makeWrapper, pkgconfig
|
|
, libX11, qt4, enchant #, mythes, boost
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.0.6";
|
|
name = "lyx-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.0.x/${name}.tar.xz";
|
|
sha256 = "1llah9d9ymvdk8asmqslcwnicycxrwb27k8si184n5bfxvnjpjx5";
|
|
};
|
|
|
|
configureFlags = [
|
|
#"--without-included-boost"
|
|
/* Boost is a huge dependency from which 1.4 MB of libs would be used.
|
|
Using internal boost stuff only increases executable by around 0.2 MB. */
|
|
#"--without-included-mythes" # such a small library isn't worth a separate package
|
|
];
|
|
|
|
buildInputs = [
|
|
texLive qt4 python makeWrapper pkgconfig
|
|
enchant # mythes boost
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "WYSIWYM frontend for LaTeX, DocBook";
|
|
homepage = "http://www.lyx.org";
|
|
license = "GPL2";
|
|
maintainers = [ stdenv.lib.maintainers.vcunat ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|