summary refs log tree commit diff
path: root/pkgs/applications/editors/rednotebook
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-06 23:20:14 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-06 23:20:14 +0000
commit2b8d48a9fc82b3e70a4402828cac6603dead937c (patch)
treeda443d1fb0462c77b56656c05484ef8f6e5ab9fa /pkgs/applications/editors/rednotebook
parente4a535afb9e384f836213b8730effb87d3ccfc0a (diff)
downloadnixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.tar
nixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.tar.gz
nixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.tar.bz2
nixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.tar.lz
nixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.tar.xz
nixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.tar.zst
nixlib-2b8d48a9fc82b3e70a4402828cac6603dead937c.zip
rednotebook: move to applications/editors
Diffstat (limited to 'pkgs/applications/editors/rednotebook')
-rw-r--r--pkgs/applications/editors/rednotebook/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix
new file mode 100644
index 000000000000..ed4b16363051
--- /dev/null
+++ b/pkgs/applications/editors/rednotebook/default.nix
@@ -0,0 +1,22 @@
+{ lib, buildPythonPackage, fetchurl, pygtk, pywebkitgtk, pyyaml, chardet }:
+
+buildPythonPackage rec {
+  name = "rednotebook-1.8.1";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/rednotebook/${name}.tar.gz";
+    sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn";
+  };
+
+  # no tests available
+  doCheck = false;
+
+  propagatedBuildInputs = [ pygtk pywebkitgtk pyyaml chardet ];
+
+  meta = with lib; {
+    homepage = http://rednotebook.sourceforge.net/index.html;
+    description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ tstrobel ];
+  };
+}