mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
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.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.xm1math.net/texmaker/texmaker-${version}.tar.bz2";
|
|
hash = "sha256-l3zlgOJcGrbgvD2hA74LQ+v2C4zg0nJzEE/df1hhd/w=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|