nixpkgs/pkgs/applications/editors/texmaker/default.nix

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

62 lines
1.2 KiB
Nix
Raw Normal View History

2024-09-08 18:59:49 +00:00
{
lib,
stdenv,
fetchurl,
cmake,
pkg-config,
wrapQtAppsHook,
poppler,
qtbase,
qttools,
qtwebengine,
qt5compat,
zlib
}:
2024-09-08 18:49:07 +00:00
stdenv.mkDerivation rec {
pname = "texmaker";
2024-09-08 18:49:07 +00:00
version = "6.0.0";
src = fetchurl {
2024-09-08 18:59:49 +00:00
url = "http://www.xm1math.net/texmaker/texmaker-${version}.tar.bz2";
2024-09-08 18:49:07 +00:00
hash = "sha256-l3zlgOJcGrbgvD2hA74LQ+v2C4zg0nJzEE/df1hhd/w=";
};
2024-09-08 18:59:49 +00:00
buildInputs = [
poppler
qtbase
qtwebengine
qt5compat
qttools
zlib
];
nativeBuildInputs = [
cmake
pkg-config
wrapQtAppsHook
];
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 13:36:52 +00:00
meta = with lib; {
description = "TeX and LaTeX editor";
2024-09-08 18:59:49 +00:00
longDescription = ''
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.
'';
homepage = "http://www.xm1math.net/texmaker/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2024-09-08 18:59:49 +00:00
maintainers = with maintainers; [
cfouche
markuskowa
];
2023-11-27 01:17:53 +00:00
mainProgram = "texmaker";
};
}