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

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

33 lines
953 B
Nix
Raw Normal View History

2021-03-12 20:40:13 +00:00
{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
2020-03-18 19:53:54 +00:00
, qtscript, poppler, hunspell
2017-09-18 23:06:57 +01:00
, withLua ? true, lua
2019-03-17 15:28:07 +00:00
, withPython ? true, python3 }:
2017-09-18 23:06:57 +01:00
2020-03-18 19:53:54 +00:00
mkDerivation rec {
pname = "texworks";
2022-02-27 19:23:23 +00:00
version = "0.6.7";
2017-09-18 23:06:57 +01:00
src = fetchFromGitHub {
owner = "TeXworks";
repo = "texworks";
rev = "release-${version}";
2022-02-27 19:23:23 +00:00
sha256 = "sha256-v0UukFM5brPtgq+zH5H1KfUc0eL0hjTC9z0tVQRqu2Q=";
2017-09-18 23:06:57 +01:00
};
2020-03-18 19:53:54 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ qtscript poppler hunspell ]
2017-09-18 23:06:57 +01:00
++ lib.optional withLua lua
2019-03-17 15:28:07 +00:00
++ lib.optional withPython python3;
2017-09-18 23:06:57 +01:00
cmakeFlags = lib.optional withLua "-DWITH_LUA=ON"
++ lib.optional withPython "-DWITH_PYTHON=ON";
2020-03-18 19:53:54 +00:00
meta = with lib; {
2017-09-18 23:06:57 +01:00
description = "Simple TeX front-end program inspired by TeXShop";
homepage = "http://www.tug.org/texworks/";
2017-09-18 23:06:57 +01:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dotlambda ];
platforms = with platforms; linux;
};
}