mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #31341 from orivej/rednotebook
Restore and update RedNotebook
This commit is contained in:
commit
6fb8bac12f
3 changed files with 41 additions and 0 deletions
37
pkgs/applications/editors/rednotebook/default.nix
Normal file
37
pkgs/applications/editors/rednotebook/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib, buildPythonApplication, fetchFromGitHub
|
||||
, gdk_pixbuf, glib, gtk3, pango, webkitgtk
|
||||
, pygobject3, pyyaml
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
name = "rednotebook-${version}";
|
||||
version = "2.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jendrikseipp";
|
||||
repo = "rednotebook";
|
||||
rev = "v${version}";
|
||||
sha256 = "0zkfid104hcsf20r6829v11wxdghqkd3j1zbgyvd1s7q4nxjn5lj";
|
||||
};
|
||||
|
||||
# We have not packaged tests.
|
||||
doCheck = false;
|
||||
|
||||
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; {
|
||||
homepage = http://rednotebook.sourceforge.net/;
|
||||
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ orivej tstrobel ];
|
||||
};
|
||||
}
|
|
@ -16375,6 +16375,8 @@ with pkgs;
|
|||
|
||||
recode = callPackage ../tools/text/recode { };
|
||||
|
||||
rednotebook = python3Packages.callPackage ../applications/editors/rednotebook { };
|
||||
|
||||
remotebox = callPackage ../applications/virtualization/remotebox { };
|
||||
|
||||
retroshare = libsForQt5.callPackage ../applications/networking/p2p/retroshare { };
|
||||
|
|
|
@ -22496,6 +22496,8 @@ EOF
|
|||
};
|
||||
};
|
||||
|
||||
redNotebook = pkgs.rednotebook; # Backwards compatibility alias.
|
||||
|
||||
uncertainties = callPackage ../development/python-modules/uncertainties { };
|
||||
|
||||
funcy = buildPythonPackage rec {
|
||||
|
|
Loading…
Reference in a new issue