about summary refs log tree commit diff
path: root/pkgs/applications/editors/rednotebook
diff options
context:
space:
mode:
authorOrivej Desh (NixOS) <40807862+orivej-nixos@users.noreply.github.com>2019-08-03 14:14:55 +0000
committerGitHub <noreply@github.com>2019-08-03 14:14:55 +0000
commit886176e3d60404192d3c003c08918b3dd83ae68b (patch)
tree5758d1928ad640c2c5b7bbaff2028fe7c92fb0df /pkgs/applications/editors/rednotebook
parent33a876e61955e641bd805b187bf164df60e15644 (diff)
parentda66614cb05b20172c068603c010f32536e6b6a4 (diff)
downloadnixlib-886176e3d60404192d3c003c08918b3dd83ae68b.tar
nixlib-886176e3d60404192d3c003c08918b3dd83ae68b.tar.gz
nixlib-886176e3d60404192d3c003c08918b3dd83ae68b.tar.bz2
nixlib-886176e3d60404192d3c003c08918b3dd83ae68b.tar.lz
nixlib-886176e3d60404192d3c003c08918b3dd83ae68b.tar.xz
nixlib-886176e3d60404192d3c003c08918b3dd83ae68b.tar.zst
nixlib-886176e3d60404192d3c003c08918b3dd83ae68b.zip
Merge pull request #64189 from r-ryantm/auto-update/rednotebook
rednotebook: 2.8 -> 2.11.1
Diffstat (limited to 'pkgs/applications/editors/rednotebook')
-rw-r--r--pkgs/applications/editors/rednotebook/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix
index 11154250e583..11a5b4c7ba34 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.8";
+  version = "2.11.1";
 
   src = fetchFromGitHub {
     owner = "jendrikseipp";
     repo = "rednotebook";
     rev = "v${version}";
-    sha256 = "0k75lw3p6jx30ngvn8iipk1763gazkbrsad3fpl3sqppaqaggryj";
+    sha256 = "04c7a0wgmdl88v9386y1052c38ajbkryiwhqps5lx34d4g7r6hm1";
   };
 
   # We have not packaged tests.
@@ -30,6 +30,10 @@ buildPythonApplication rec {
     "--suffix XDG_DATA_DIRS : $XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
   ];
 
+  # Until gobject-introspection in nativeBuildInputs is supported.
+  # https://github.com/NixOS/nixpkgs/issues/56943#issuecomment-472568643
+  strictDeps = false;
+
   meta = with lib; {
     homepage = http://rednotebook.sourceforge.net/;
     description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";