299eb877a7
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. This update was made based on information from https://repology.org/metapackage/lyx/versions. These checks were done: - built on NixOS - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/lyxclient -h` got 0 exit code - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/tex2lyx -h` got 0 exit code - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/tex2lyx --help` got 0 exit code - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/tex2lyx -v` and found version 2.3.0 - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/tex2lyx --version` and found version 2.3.0 - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/tex2lyx -h` and found version 2.3.0 - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/tex2lyx --help` and found version 2.3.0 - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/.lyx-wrapped --help` got 0 exit code - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/.lyx-wrapped --version` and found version 2.3.0 - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/lyx --help` got 0 exit code - ran `/nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0/bin/lyx --version` and found version 2.3.0 - found 2.3.0 with grep in /nix/store/p9561m3hhl936qh6wc3zhaypz9axywar-lyx-2.3.0 - directory tree listing: https://gist.github.com/446d7f60ddce2b781c23ff41a2d673d1
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ fetchurl, stdenv, pkgconfig, python, file, bc
|
|
, qtbase, qtsvg, hunspell, makeWrapper #, mythes, boost
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "2.3.0";
|
|
name = "lyx-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.3.x/${name}.tar.xz";
|
|
sha256 = "0axri2h8xkna4mkfchfyyysbjl7s486vx80p5hzj9zgsvdm5a3ri";
|
|
};
|
|
|
|
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
qtbase qtsvg python 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. */
|
|
#"--without-included-mythes" # such a small library isn't worth a separate package
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
doCheck = true;
|
|
|
|
# python is run during runtime to do various tasks
|
|
postFixup = ''
|
|
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;
|
|
};
|
|
}
|
|
|