summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/rednotebook
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2018-11-18 03:20:25 -0800
committerOrivej Desh (NixOS) <40807862+orivej-nixos@users.noreply.github.com>2018-11-18 11:20:25 +0000
commit91ab9ac365e6a17ec1b51b93d7a8999a83eee50a (patch)
tree73ea9e1c7a75c59d12ebf285cde16f2d990ab78e /pkgs/applications/editors/rednotebook
parent122f77a8d34bb1fae80b3e6259d7564251fa5b5f (diff)
rednotebook: 2.6.1 -> 2.8 (#50574)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rednotebook/versions
Diffstat (limited to 'pkgs/applications/editors/rednotebook')
-rw-r--r--pkgs/applications/editors/rednotebook/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix
index 8b37f0b74d5b..9a181f3dae70 100644
--- a/pkgs/applications/editors/rednotebook/default.nix
+++ b/pkgs/applications/editors/rednotebook/default.nix
@@ -1,17 +1,17 @@
{ lib, buildPythonApplication, fetchFromGitHub
-, gdk_pixbuf, glib, gobjectIntrospection, gtk3, pango, webkitgtk
+, gdk_pixbuf, glib, gobjectIntrospection, gtk3, gtksourceview, pango, webkitgtk
, pygobject3, pyyaml
}:
buildPythonApplication rec {
pname = "rednotebook";
- version = "2.6.1";
+ version = "2.8";
src = fetchFromGitHub {
owner = "jendrikseipp";
repo = "rednotebook";
rev = "v${version}";
- sha256 = "1x6acx0hagsawx84cv55qz17p8qjpq1v1zaf8rmm6ifsslsxw91h";
+ sha256 = "0k75lw3p6jx30ngvn8iipk1763gazkbrsad3fpl3sqppaqaggryj";
};
# We have not packaged tests.
@@ -20,7 +20,7 @@ buildPythonApplication rec {
nativeBuildInputs = [ gobjectIntrospection ];
propagatedBuildInputs = [
- gdk_pixbuf glib gtk3 pango webkitgtk
+ gdk_pixbuf glib gtk3 gtksourceview pango webkitgtk
pygobject3 pyyaml
];