2017-11-06 23:45:57 +00:00
|
|
|
{ lib, buildPythonApplication, fetchFromGitHub
|
2019-05-22 11:03:39 +00:00
|
|
|
, gdk-pixbuf, glib, gobject-introspection, gtk3, gtksourceview, pango, webkitgtk
|
2017-11-06 23:45:57 +00:00
|
|
|
, pygobject3, pyyaml
|
|
|
|
}:
|
2017-11-06 23:20:14 +00:00
|
|
|
|
2017-11-06 23:45:57 +00:00
|
|
|
buildPythonApplication rec {
|
2018-06-23 13:27:58 +00:00
|
|
|
pname = "rednotebook";
|
2019-07-02 20:38:09 +00:00
|
|
|
version = "2.11.1";
|
2017-11-06 23:20:14 +00:00
|
|
|
|
2017-11-06 23:45:57 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jendrikseipp";
|
|
|
|
repo = "rednotebook";
|
|
|
|
rev = "v${version}";
|
2019-07-02 20:38:09 +00:00
|
|
|
sha256 = "04c7a0wgmdl88v9386y1052c38ajbkryiwhqps5lx34d4g7r6hm1";
|
2017-11-06 23:20:14 +00:00
|
|
|
};
|
|
|
|
|
2017-11-06 23:45:57 +00:00
|
|
|
# We have not packaged tests.
|
2017-11-06 23:20:14 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ gobject-introspection ];
|
2018-07-04 23:28:00 +00:00
|
|
|
|
2017-11-06 23:45:57 +00:00
|
|
|
propagatedBuildInputs = [
|
2019-05-22 11:03:39 +00:00
|
|
|
gdk-pixbuf glib gtk3 gtksourceview pango webkitgtk
|
2017-11-06 23:45:57 +00:00
|
|
|
pygobject3 pyyaml
|
|
|
|
];
|
|
|
|
|
|
|
|
makeWrapperArgs = [
|
|
|
|
"--set GI_TYPELIB_PATH $GI_TYPELIB_PATH"
|
|
|
|
"--prefix XDG_DATA_DIRS : $out/share"
|
|
|
|
"--suffix XDG_DATA_DIRS : $XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
];
|
2017-11-06 23:20:14 +00:00
|
|
|
|
2019-07-25 23:40:43 +00:00
|
|
|
# Until gobject-introspection in nativeBuildInputs is supported.
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/56943#issuecomment-472568643
|
|
|
|
strictDeps = false;
|
|
|
|
|
2017-11-06 23:20:14 +00:00
|
|
|
meta = with lib; {
|
2017-11-06 23:45:57 +00:00
|
|
|
homepage = http://rednotebook.sourceforge.net/;
|
2017-11-06 23:20:14 +00:00
|
|
|
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
|
|
|
|
license = licenses.gpl2;
|
2017-11-06 23:45:57 +00:00
|
|
|
maintainers = with maintainers; [ orivej tstrobel ];
|
2017-11-06 23:20:14 +00:00
|
|
|
};
|
|
|
|
}
|