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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.3 KiB
Nix
Raw Permalink Normal View History

2024-07-21 15:59:21 +00:00
{
fetchurl,
lib,
mkDerivation,
pkg-config,
python3,
file,
bc,
qtbase,
qtsvg,
hunspell,
makeWrapper, # , mythes, boost
}:
mkDerivation rec {
2024-10-17 11:27:15 +00:00
version = "2.4.2.1";
pname = "lyx";
src = fetchurl {
2024-07-21 16:10:46 +00:00
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.4.x/${pname}-${version}.tar.xz";
2024-10-17 11:27:15 +00:00
hash = "sha256-HSscer45Hi+0kQneLI4Tp9/mBfJ99o9om/lH36/HpNk=";
};
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
2024-07-21 15:59:21 +00:00
nativeBuildInputs = [
pkg-config
makeWrapper
python3
qtbase
];
buildInputs = [
2024-07-21 15:59:21 +00:00
qtbase
qtsvg
file # for libmagic
bc
hunspell # enchant
];
configureFlags = [
"--enable-qt5"
#"--without-included-boost"
2024-07-21 15:59:21 +00:00
/*
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
2024-07-21 15:59:21 +00:00
qtWrapperArgs = [ " --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;
};
}