about summary refs log tree commit diff
path: root/pkgs/applications/editors/texworks
diff options
context:
space:
mode:
authorRobert Schütz <dev@schuetz-co.de>2021-03-12 21:40:13 +0100
committerRobert Schütz <dev@schuetz-co.de>2021-03-12 22:14:29 +0100
commitfc1e1ad891c940d4ec78f42b32ea7c7299edb826 (patch)
treeb5c6bb308c7e37d62b2b87e0f0f7105115a02b53 /pkgs/applications/editors/texworks
parent916ee862e87ac5ee2439f2fb7856386b4dc906ae (diff)
texworks: 0.6.5 -> 0.6.6
Diffstat (limited to 'pkgs/applications/editors/texworks')
-rw-r--r--pkgs/applications/editors/texworks/default.nix14
1 files changed, 3 insertions, 11 deletions
diff --git a/pkgs/applications/editors/texworks/default.nix b/pkgs/applications/editors/texworks/default.nix
index 87990b6eae8f7..9db68f71ea8ec 100644
--- a/pkgs/applications/editors/texworks/default.nix
+++ b/pkgs/applications/editors/texworks/default.nix
@@ -1,27 +1,19 @@
-{ mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, pkg-config
+{ mkDerivation, lib, fetchFromGitHub, cmake, pkg-config
 , qtscript, poppler, hunspell
 , withLua ? true, lua
 , withPython ? true, python3 }:
 
 mkDerivation rec {
   pname = "texworks";
-  version = "0.6.5";
+  version = "0.6.6";
 
   src = fetchFromGitHub {
     owner = "TeXworks";
     repo = "texworks";
     rev = "release-${version}";
-    sha256 = "1lw1p4iyzxypvjhnav11g6rwf6gx7kyzwy2iprvv8zzpqcdkjp2z";
+    sha256 = "0l8jl1b8lpas7yz6m0qc2nikyn54lx2ljzmjjz3zgxgd6l502006";
   };
 
-  patches = [
-    (fetchpatch {
-      name = "fix-compilation-with-qt-5.15.patch";
-      url = "https://github.com/TeXworks/texworks/commit/a5352a3a94e3685125650b65e6197de060326cc2.patch";
-      sha256 = "0pf7h1m11x0s039bxknm7rxdp9b4g8ch86y38jlyy56c74mw97i6";
-    })
-  ];
-
   nativeBuildInputs = [ cmake pkg-config ];
   buildInputs = [ qtscript poppler hunspell ]
                 ++ lib.optional withLua lua