rednotebook: 1.8.1 -> 2.3
This commit is contained in:
parent
2b8d48a9fc
commit
b48d954228
@ -1,22 +1,37 @@
|
|||||||
{ lib, buildPythonPackage, fetchurl, pygtk, pywebkitgtk, pyyaml, chardet }:
|
{ lib, buildPythonApplication, fetchFromGitHub
|
||||||
|
, gdk_pixbuf, glib, gtk3, pango, webkitgtk
|
||||||
|
, pygobject3, pyyaml
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonApplication rec {
|
||||||
name = "rednotebook-1.8.1";
|
name = "rednotebook-${version}";
|
||||||
|
version = "2.3";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "mirror://sourceforge/rednotebook/${name}.tar.gz";
|
owner = "jendrikseipp";
|
||||||
sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn";
|
repo = "rednotebook";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0zkfid104hcsf20r6829v11wxdghqkd3j1zbgyvd1s7q4nxjn5lj";
|
||||||
};
|
};
|
||||||
|
|
||||||
# no tests available
|
# We have not packaged tests.
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = [ pygtk pywebkitgtk pyyaml chardet ];
|
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; {
|
meta = with lib; {
|
||||||
homepage = http://rednotebook.sourceforge.net/index.html;
|
homepage = http://rednotebook.sourceforge.net/;
|
||||||
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
|
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = with maintainers; [ tstrobel ];
|
maintainers = with maintainers; [ orivej tstrobel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -16361,6 +16361,8 @@ with pkgs;
|
|||||||
|
|
||||||
recode = callPackage ../tools/text/recode { };
|
recode = callPackage ../tools/text/recode { };
|
||||||
|
|
||||||
|
rednotebook = python3Packages.callPackage ../applications/editors/rednotebook { };
|
||||||
|
|
||||||
remotebox = callPackage ../applications/virtualization/remotebox { };
|
remotebox = callPackage ../applications/virtualization/remotebox { };
|
||||||
|
|
||||||
retroshare = libsForQt5.callPackage ../applications/networking/p2p/retroshare { };
|
retroshare = libsForQt5.callPackage ../applications/networking/p2p/retroshare { };
|
||||||
|
@ -22735,7 +22735,7 @@ EOF
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
redNotebook = callPackage ../applications/editors/rednotebook { };
|
redNotebook = pkgs.rednotebook; # Backwards compatibility alias.
|
||||||
|
|
||||||
uncertainties = callPackage ../development/python-modules/uncertainties { };
|
uncertainties = callPackage ../development/python-modules/uncertainties { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user