2021-08-16 10:53:22 +01:00
|
|
|
{ lib, mkDerivation, fetchurl, qtbase, qtscript, qtwebengine, qmake, zlib, pkg-config, poppler }:
|
2014-04-24 09:54:09 +01:00
|
|
|
|
2019-10-22 14:36:52 +01:00
|
|
|
mkDerivation rec {
|
2014-04-24 09:54:09 +01:00
|
|
|
pname = "texmaker";
|
2021-09-14 03:22:54 +01:00
|
|
|
version = "5.1.2";
|
2014-04-24 09:54:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://www.xm1math.net/texmaker/${pname}-${version}.tar.bz2";
|
2021-09-14 03:22:54 +01:00
|
|
|
sha256 = "sha256-UmiW8sGuVhEw7seq6BW53Nqejut3K2VB0NyUzpGnEEQ=";
|
2014-04-24 09:54:09 +01:00
|
|
|
};
|
|
|
|
|
2021-08-16 10:53:22 +01:00
|
|
|
buildInputs = [ qtbase qtscript poppler zlib qtwebengine ];
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config poppler qmake ];
|
2016-04-16 18:45:33 +01:00
|
|
|
NIX_CFLAGS_COMPILE="-I${poppler.dev}/include/poppler";
|
2014-04-24 09:54:09 +01:00
|
|
|
|
2019-10-22 16:27:47 +01:00
|
|
|
qmakeFlags = [
|
|
|
|
"DESKTOPDIR=${placeholder "out"}/share/applications"
|
|
|
|
"ICONDIR=${placeholder "out"}/share/pixmaps"
|
|
|
|
"METAINFODIR=${placeholder "out"}/share/metainfo"
|
|
|
|
];
|
2018-03-12 00:56:26 +00:00
|
|
|
|
2019-10-22 14:36:52 +01:00
|
|
|
meta = with lib; {
|
2014-04-24 09:54:09 +01:00
|
|
|
description = "TeX and LaTeX editor";
|
|
|
|
longDescription=''
|
2021-01-19 21:20:11 +00:00
|
|
|
This editor is a full fledged IDE for TeX and
|
|
|
|
LaTeX editing with completion, structure viewer, preview,
|
|
|
|
spell checking and support of any compilation chain.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.xm1math.net/texmaker/";
|
2014-04-24 09:54:09 +01:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2019-02-09 19:48:39 +00:00
|
|
|
maintainers = with maintainers; [ cfouche markuskowa ];
|
2014-04-24 09:54:09 +01:00
|
|
|
};
|
|
|
|
}
|