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

33 lines
954 B
Nix
Raw Normal View History

2020-03-18 19:53:54 +00:00
{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
, qtscript, poppler, hunspell
2017-09-18 22:06:57 +00:00
, withLua ? true, lua
2019-03-17 15:28:07 +00:00
, withPython ? true, python3 }:
2017-09-18 22:06:57 +00:00
2020-03-18 19:53:54 +00:00
mkDerivation rec {
pname = "texworks";
2020-04-01 20:08:03 +00:00
version = "0.6.5";
2017-09-18 22:06:57 +00:00
src = fetchFromGitHub {
owner = "TeXworks";
repo = "texworks";
rev = "release-${version}";
2020-04-01 20:08:03 +00:00
sha256 = "1lw1p4iyzxypvjhnav11g6rwf6gx7kyzwy2iprvv8zzpqcdkjp2z";
2017-09-18 22:06:57 +00:00
};
2020-03-18 19:53:54 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ qtscript poppler hunspell ]
2017-09-18 22:06:57 +00:00
++ lib.optional withLua lua
2019-03-17 15:28:07 +00:00
++ lib.optional withPython python3;
2017-09-18 22:06:57 +00: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 22:06:57 +00:00
description = "Simple TeX front-end program inspired by TeXShop";
homepage = "http://www.tug.org/texworks/";
2017-09-18 22:06:57 +00:00
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dotlambda ];
platforms = with platforms; linux;
};
}