mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ lib, buildPythonApplication, fetchFromGitHub
|
|
, gdk-pixbuf, glib, gobject-introspection, gtk3, gtksourceview, pango, webkitgtk
|
|
, pygobject3, pyyaml
|
|
}:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "rednotebook";
|
|
version = "2.33";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jendrikseipp";
|
|
repo = "rednotebook";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-K4uEZZZXU2mZ61t6Ak5mpiCsm/mcNhm+xJSzfJPiuwo=";
|
|
};
|
|
|
|
# We have not packaged tests.
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ gobject-introspection ];
|
|
|
|
propagatedBuildInputs = [
|
|
gdk-pixbuf glib gtk3 gtksourceview 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; {
|
|
homepage = "https://rednotebook.sourceforge.io/";
|
|
changelog = "https://github.com/jendrikseipp/rednotebook/blob/v${version}/CHANGELOG.md";
|
|
description = "Modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ orivej ];
|
|
mainProgram = "rednotebook";
|
|
};
|
|
}
|