about summary refs log tree commit diff
path: root/pkgs/applications/editors/rednotebook
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2022-02-16 16:17:58 -0800
committerGitHub <noreply@github.com>2022-02-17 01:17:58 +0100
commit11b3b8dc852bf59646d3ad5342e5d13df41cdb81 (patch)
tree9e4230e579384c3de9794d40f4826008248c8b13 /pkgs/applications/editors/rednotebook
parent49e534cf3bc6d5523202fcafaec4efd4656043f1 (diff)
downloadnixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.tar
nixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.tar.gz
nixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.tar.bz2
nixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.tar.lz
nixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.tar.xz
nixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.tar.zst
nixlib-11b3b8dc852bf59646d3ad5342e5d13df41cdb81.zip
rednotebook: 2.22 -> 2.23
* rednotebook: 2.22 -> 2.23 (#160082)

* rednotebook: add meta.changelog
and use SPDX 3.0 license identifier

Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
Diffstat (limited to 'pkgs/applications/editors/rednotebook')
-rw-r--r--pkgs/applications/editors/rednotebook/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix
index 4e4835783e46..e5bdc28b80ef 100644
--- a/pkgs/applications/editors/rednotebook/default.nix
+++ b/pkgs/applications/editors/rednotebook/default.nix
@@ -5,13 +5,13 @@
 
 buildPythonApplication rec {
   pname = "rednotebook";
-  version = "2.22";
+  version = "2.23";
 
   src = fetchFromGitHub {
     owner = "jendrikseipp";
     repo = "rednotebook";
     rev = "v${version}";
-    sha256 = "11n970ad0j57vlll5j30ngkrfyil23v1b29ickbnblcldvjbgwa5";
+    sha256 = "sha256-CLQWbwwJnr6Al223GvV1hVNK13p2iAyjNF7PhdaU9N0=";
   };
 
   # We have not packaged tests.
@@ -36,8 +36,9 @@ buildPythonApplication rec {
 
   meta = with lib; {
     homepage = "https://rednotebook.sourceforge.io/";
+    changelog = "https://github.com/jendrikseipp/rednotebook/blob/v${version}/CHANGELOG.md";
     description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
-    license = licenses.gpl2;
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ orivej tstrobel ];
   };
 }