about summary refs log tree commit diff
path: root/pkgs/applications/office/vnote
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-09-26 10:51:57 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-09-26 10:52:31 -0300
commit6ae909d1839c2d40dcb05f596add39eccde1b690 (patch)
treea6f8cc3936dd9fc0227b8fd2318bd6d9336d14e0 /pkgs/applications/office/vnote
parentc9b005ff13c6ebc3b726548963014899e1012352 (diff)
vnote: 2.10 -> 3.7.0
Diffstat (limited to 'pkgs/applications/office/vnote')
-rw-r--r--pkgs/applications/office/vnote/default.nix26
1 files changed, 15 insertions, 11 deletions
diff --git a/pkgs/applications/office/vnote/default.nix b/pkgs/applications/office/vnote/default.nix
index b266ce86e2acc..3519f015ffa16 100644
--- a/pkgs/applications/office/vnote/default.nix
+++ b/pkgs/applications/office/vnote/default.nix
@@ -1,27 +1,31 @@
-{ lib, mkDerivation, fetchFromGitHub, qmake, qtbase, qtwebengine }:
+{ lib
+, mkDerivation
+, fetchFromGitHub
+, qmake
+, qtbase
+, qtwebengine
+}:
 
-let
-  description = "A note-taking application that knows programmers and Markdown better";
-in mkDerivation rec {
-  version = "2.10";
+mkDerivation rec {
   pname = "vnote";
+  version = "3.7.0";
 
   src = fetchFromGitHub {
-    owner = "tamlok";
-    repo = "vnote";
+    owner = "vnotex";
+    repo = pname;
     fetchSubmodules = true;
     rev = "v${version}";
-    sha256 = "EeeVGnKI0irLO1zJQxlVlIUhqG987JIgxNvKpUgLxUQ=";
+    sha256 = "sha256-D9/4BakXTComvGTV8F131G5PzA8LhWfNSZRBOMo5t5c=";
   };
 
   nativeBuildInputs = [ qmake ];
   buildInputs = [ qtbase qtwebengine ];
 
   meta = with lib; {
-    inherit description;
-    homepage = "https://tamlok.github.io/vnote";
+    homepage = "https://vnotex.github.io/vnote";
+    description = "A pleasant note-taking platform";
     license = licenses.mit;
+    maintainers = with maintainers; [ AndersonTorres ];
     platforms = platforms.linux;
-    maintainers = [ maintainers.kuznero ];
   };
 }