mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 16:46:09 +00:00
33 lines
963 B
Nix
33 lines
963 B
Nix
{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtscript, qtsvg,
|
|
wrapQtAppsHook, poppler, zlib, pkgconfig }:
|
|
|
|
mkDerivation rec {
|
|
pname = "texstudio";
|
|
version = "3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "${pname}-org";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "18ad85y4hrsvp7gs50dfg08cz40vbakb9hs8gw4cvi7r17vds5ar";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake wrapQtAppsHook pkgconfig ];
|
|
buildInputs = [ qtbase qtscript qtsvg poppler zlib ];
|
|
|
|
qmakeFlags = [ "NO_APPDATA=True" ];
|
|
|
|
meta = with lib; {
|
|
description = "TeX and LaTeX editor";
|
|
longDescription=''
|
|
Fork of TeXMaker, this editor is a full fledged IDE for
|
|
LaTeX editing with completion, structure viewer, preview,
|
|
spell checking and support of any compilation chain.
|
|
'';
|
|
homepage = "http://texstudio.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ ajs124 cfouche ];
|
|
};
|
|
}
|