1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/lyx/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2014-08-14 19:22:55 +01:00
{ fetchurl, stdenv, pkgconfig, python, file, bc
, qt4, hunspell, makeWrapper #, mythes, boost
}:
stdenv.mkDerivation rec {
2016-07-03 16:20:24 +01:00
version = "2.1.5";
name = "lyx-${version}";
src = fetchurl {
2014-08-14 19:22:55 +01:00
url = "ftp://ftp.lyx.org/pub/lyx/stable/2.1.x/${name}.tar.xz";
2016-07-03 16:20:24 +01:00
sha256 = "1wrcxsvr5kx8cfdabshzmcjrb3rmy5bh74njnzpq9m5xms8parrf";
};
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. */
2013-01-01 15:33:56 +00:00
#"--without-included-mythes" # such a small library isn't worth a separate package
];
2014-08-14 19:22:55 +01:00
# LaTeX is used from $PATH, as people often want to have it with extra pkgs
buildInputs = [
2014-08-14 19:22:55 +01:00
pkgconfig qt4 python file/*for libmagic*/ bc
hunspell makeWrapper # enchant
];
2014-08-14 19:22:55 +01:00
enableParallelBuilding = true;
doCheck = true;
2014-08-14 19:22:55 +01:00
# 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";
2014-08-14 19:22:55 +01:00
license = licenses.gpl2Plus;
maintainers = [ maintainers.vcunat ];
platforms = platforms.linux;
};
}
2014-08-14 19:22:55 +01:00