47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ fetchurl, stdenv, pkgconfig, python, file, bc
|
|
, qt4, hunspell, makeWrapper #, mythes, boost
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.1.3";
|
|
name = "lyx-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/${name}.tar.xz";
|
|
sha256 = "10jnqz7ilxppv60h0hpkq7wgc3fbcm3z19xhnqz9hwp3brz2xm9g";
|
|
};
|
|
|
|
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
|
|
];
|
|
|
|
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
|
|
buildInputs = [
|
|
pkgconfig qt4 python file/*for libmagic*/ bc
|
|
hunspell makeWrapper # enchant
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = true;
|
|
|
|
# python is run during runtime to do various tasks
|
|
postFixup = ''
|
|
sed '1s:/usr/bin/python:${python}/bin/python:'
|
|
|
|
wrapProgram "$out/bin/lyx" \
|
|
--prefix PATH : '${python}/bin'
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "WYSIWYM frontend for LaTeX, DocBook";
|
|
homepage = "http://www.lyx.org";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.vcunat ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|
|
|