nixpkgs/pkgs/applications/editors/rednotebook/default.nix

38 lines
1015 B
Nix
Raw Normal View History

2017-11-06 23:45:57 +00:00
{ lib, buildPythonApplication, fetchFromGitHub
, gdk_pixbuf, glib, gtk3, pango, webkitgtk
, pygobject3, pyyaml
}:
2017-11-06 23:45:57 +00:00
buildPythonApplication rec {
name = "rednotebook-${version}";
version = "2.3";
2017-11-06 23:45:57 +00:00
src = fetchFromGitHub {
owner = "jendrikseipp";
repo = "rednotebook";
rev = "v${version}";
sha256 = "0zkfid104hcsf20r6829v11wxdghqkd3j1zbgyvd1s7q4nxjn5lj";
};
2017-11-06 23:45:57 +00:00
# We have not packaged tests.
doCheck = false;
2017-11-06 23:45:57 +00:00
propagatedBuildInputs = [
gdk_pixbuf glib gtk3 pango webkitgtk
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"
];
meta = with lib; {
2017-11-06 23:45:57 +00:00
homepage = http://rednotebook.sourceforge.net/;
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 ];
};
}