nixpkgs/pkgs/applications/misc/lyx/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2021-07-27 15:17:17 +00:00
{ fetchurl, lib, mkDerivation, pkg-config, python3, file, bc
, qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost
}:
mkDerivation rec {
2021-01-20 04:52:31 +00:00
version = "2.3.6.1";
pname = "lyx";
src = fetchurl {
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.3.x/${pname}-${version}.tar.xz";
2021-01-20 04:52:31 +00:00
sha256 = "sha256-xr7SYzQZiY4Bp8w1AxDX2TS/WRyrcln8JYGqTADq+ng=";
};
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
nativeBuildInputs = [ pkg-config ];
buildInputs = [
2021-07-27 15:17:17 +00:00
qtbase qtsvg python3 file/*for libmagic*/ bc
hunspell makeWrapper # enchant
];
configureFlags = [
"--enable-qt5"
#"--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. */
2013-01-01 15:33:56 +00:00
#"--without-included-mythes" # such a small library isn't worth a separate package
];
2014-08-14 18:22:55 +00:00
enableParallelBuilding = true;
doCheck = true;
2014-08-14 18:22:55 +00:00
# python is run during runtime to do various tasks
qtWrapperArgs = [
2021-07-27 15:17:17 +00:00
" --prefix PATH : ${python3}/bin"
];
2014-08-14 18:22:55 +00:00
meta = with lib; {
description = "WYSIWYM frontend for LaTeX, DocBook";
homepage = "http://www.lyx.org";
2014-08-14 18:22:55 +00:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.vcunat ];
platforms = platforms.linux;
};
}
2014-08-14 18:22:55 +00:00