tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rednotebook: move to applications/editors
Orivej Desh
8 years ago
2b8d48a9
e4a535af
+23
-22
2 changed files
expand all
collapse all
unified
split
pkgs
applications
editors
rednotebook
default.nix
top-level
python-packages.nix
+22
pkgs/applications/editors/rednotebook/default.nix
···
1
1
+
{ lib, buildPythonPackage, fetchurl, pygtk, pywebkitgtk, pyyaml, chardet }:
2
2
+
3
3
+
buildPythonPackage rec {
4
4
+
name = "rednotebook-1.8.1";
5
5
+
6
6
+
src = fetchurl {
7
7
+
url = "mirror://sourceforge/rednotebook/${name}.tar.gz";
8
8
+
sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn";
9
9
+
};
10
10
+
11
11
+
# no tests available
12
12
+
doCheck = false;
13
13
+
14
14
+
propagatedBuildInputs = [ pygtk pywebkitgtk pyyaml chardet ];
15
15
+
16
16
+
meta = with lib; {
17
17
+
homepage = http://rednotebook.sourceforge.net/index.html;
18
18
+
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
19
19
+
license = licenses.gpl2;
20
20
+
maintainers = with maintainers; [ tstrobel ];
21
21
+
};
22
22
+
}
+1
-22
pkgs/top-level/python-packages.nix
···
22735
22735
};
22736
22736
};
22737
22737
22738
22738
-
22739
22739
-
redNotebook = buildPythonPackage rec {
22740
22740
-
name = "rednotebook-1.8.1";
22741
22741
-
22742
22742
-
src = pkgs.fetchurl {
22743
22743
-
url = "mirror://sourceforge/rednotebook/${name}.tar.gz";
22744
22744
-
sha256 = "00b7s4xpqpxsbzjvjx9qsx5d84m9pvn383c5di1nsfh35pig0rzn";
22745
22745
-
};
22746
22746
-
22747
22747
-
# no tests available
22748
22748
-
doCheck = false;
22749
22749
-
22750
22750
-
propagatedBuildInputs = with self; [ pygtk pywebkitgtk pyyaml chardet ];
22751
22751
-
22752
22752
-
meta = {
22753
22753
-
homepage = http://rednotebook.sourceforge.net/index.html;
22754
22754
-
description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds";
22755
22755
-
license = licenses.gpl2;
22756
22756
-
maintainers = with maintainers; [ tstrobel ];
22757
22757
-
};
22758
22758
-
};
22759
22759
-
22738
22738
+
redNotebook = callPackage ../applications/editors/rednotebook { };
22760
22739
22761
22740
uncertainties = callPackage ../development/python-modules/uncertainties { };
22762
22741