Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
cmake,
|
|
pkg-config,
|
|
wrapQtAppsHook,
|
|
poppler,
|
|
qtbase,
|
|
qttools,
|
|
qtwebengine,
|
|
qt5compat,
|
|
zlib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "texmaker";
|
|
version = "6.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.xm1math.net/texmaker/texmaker-${version}.tar.bz2";
|
|
hash = "sha256-uMI13wzY/XcUzXDTte42MWOwJUqd6pGAeBuPDi5GyvY=";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "TeX and LaTeX editor";
|
|
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;
|
|
maintainers = with maintainers; [
|
|
cfouche
|
|
markuskowa
|
|
];
|
|
mainProgram = "texmaker";
|
|
};
|
|
}
|