about summary refs log tree commit diff
path: root/pkgs/applications/graphics/fontmatrix
diff options
context:
space:
mode:
authorPablo Ovelleiro Corral <mail@pablo.tools>2023-08-23 17:40:05 +0200
committerPablo Ovelleiro Corral <mail@pablo.tools>2023-08-23 17:40:05 +0200
commita7941173c8964c576957f4935d058aeacc958fe8 (patch)
tree00b903735b41c1551560c97111893c2fa9a0fa39 /pkgs/applications/graphics/fontmatrix
parentba4baedc0198230b63cb1ac63236f0e179934937 (diff)
Switch from fork to original repo
Diffstat (limited to 'pkgs/applications/graphics/fontmatrix')
-rw-r--r--pkgs/applications/graphics/fontmatrix/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/applications/graphics/fontmatrix/default.nix b/pkgs/applications/graphics/fontmatrix/default.nix
index 1b0121a16c953..f42ae0be249a9 100644
--- a/pkgs/applications/graphics/fontmatrix/default.nix
+++ b/pkgs/applications/graphics/fontmatrix/default.nix
@@ -1,22 +1,22 @@
-{ lib, mkDerivation, fetchpatch, fetchFromGitHub, cmake, qttools, qtwebkit }:
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, cmake
+, qttools
+, qtwebkit
+}:
 
 mkDerivation rec {
   pname = "fontmatrix";
-  version = "0.6.0";
+  version = "0.9.100";
 
   src = fetchFromGitHub {
-    owner = "fcoiffie";
+    owner = "fontmatrix";
     repo = "fontmatrix";
-    rev = "1ff8382d8c85c18d9962918f461341ff4fe21993";
-    sha256 = "0yx1gbsjj9ddq1kiqplif1w5x5saw250zbmhmd4phqmaqzr60w0h";
+    rev = "v${version}";
+    sha256 = "sha256-DtajGhx79DiecglXHja9q/TKVq8Jl2faQdA5Ib/yT88=";
   };
 
-  # Add missing QAction include
-  patches = [ (fetchpatch {
-    url = "https://github.com/fcoiffie/fontmatrix/commit/dc6de8c414ae21516b72daead79c8db88309b102.patch";
-    sha256 = "092860fdyf5gq67jqfxnlgwzjgpizi6j0njjv3m62aiznrhig7c8";
-  })];
-
   buildInputs = [ qttools qtwebkit ];
 
   nativeBuildInputs = [ cmake ];