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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Nix
Raw Normal View History

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:45:57 +00:00
buildPythonApplication rec {
pname = "rednotebook";
2024-02-20 12:55:09 +00:00
version = "2.32";
2017-11-06 23:45:57 +00:00
src = fetchFromGitHub {
owner = "jendrikseipp";
repo = "rednotebook";
2022-07-30 07:31:00 +00:00
rev = "refs/tags/v${version}";
2024-02-20 12:55:09 +00:00
sha256 = "sha256-sYgiJ4Sc/5Ns3DSlwT03gt54UdzdcvMx1+c27amhulQ=";
};
2017-11-06 23:45:57 +00:00
# We have not packaged tests.
doCheck = false;
nativeBuildInputs = [ gobject-introspection ];
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"
];
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;
maintainers = with maintainers; [ orivej ];
2023-11-27 01:17:53 +00:00
mainProgram = "rednotebook";
};
}