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

45 lines
1.3 KiB
Nix
Raw Normal View History

2017-11-07 00:45:57 +01:00
{ lib, buildPythonApplication, fetchFromGitHub
2019-05-22 13:03:39 +02:00
, gdk-pixbuf, glib, gobject-introspection, gtk3, gtksourceview, pango, webkitgtk
2017-11-07 00:45:57 +01:00
, pygobject3, pyyaml
}:
2017-11-07 00:45:57 +01:00
buildPythonApplication rec {
pname = "rednotebook";
version = "2.23";
2017-11-07 00:45:57 +01:00
src = fetchFromGitHub {
owner = "jendrikseipp";
repo = "rednotebook";
rev = "v${version}";
sha256 = "sha256-CLQWbwwJnr6Al223GvV1hVNK13p2iAyjNF7PhdaU9N0=";
};
2017-11-07 00:45:57 +01:00
# We have not packaged tests.
doCheck = false;
nativeBuildInputs = [ gobject-introspection ];
2017-11-07 00:45:57 +01:00
propagatedBuildInputs = [
2019-05-22 13:03:39 +02:00
gdk-pixbuf glib gtk3 gtksourceview pango webkitgtk
2017-11-07 00:45:57 +01: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"
];
# Until gobject-introspection in nativeBuildInputs is supported.
# https://github.com/NixOS/nixpkgs/issues/56943#issuecomment-472568643
strictDeps = false;
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.gpl2Plus;
2017-11-07 00:45:57 +01:00
maintainers = with maintainers; [ orivej tstrobel ];
};
}