tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
iotas: 0.2.7 -> 0.2.10
aleksana
2 years ago
8988bbd3
3ba9038c
+8
-6
1 changed file
expand all
collapse all
unified
split
pkgs
applications
office
iotas
default.nix
+8
-6
pkgs/applications/office/iotas/default.nix
···
19
20
python3.pkgs.buildPythonApplication rec {
21
pname = "iotas";
22
-
version = "0.2.7";
23
-
format = "other";
24
25
src = fetchFromGitLab {
26
domain = "gitlab.gnome.org";
27
-
owner = "cheywood";
28
-
repo = pname;
29
rev = version;
30
-
hash = "sha256-k3Qbi/BwkJlQzlyTlo9SjJ1M3zMFHo4669rzd+BBPzQ=";
31
};
32
33
nativeBuildInputs = [
···
57
markdown-it-py
58
linkify-it-py
59
mdit-py-plugins
0
60
];
61
62
# prevent double wrapping
···
67
68
meta = with lib; {
69
description = "Simple note taking with mobile-first design and Nextcloud sync";
70
-
homepage = "https://gitlab.gnome.org/cheywood/iotas";
71
license = licenses.gpl3Plus;
72
platforms = platforms.linux;
0
73
maintainers = with maintainers; [ zendo ];
74
};
75
}
···
19
20
python3.pkgs.buildPythonApplication rec {
21
pname = "iotas";
22
+
version = "0.2.10";
23
+
pyproject = false;
24
25
src = fetchFromGitLab {
26
domain = "gitlab.gnome.org";
27
+
owner = "World";
28
+
repo = "iotas";
29
rev = version;
30
+
hash = "sha256-aITt+TJb/LrVOyb/mAC7U6/NJ4stHD76jjBFC7Pt7fU=";
31
};
32
33
nativeBuildInputs = [
···
57
markdown-it-py
58
linkify-it-py
59
mdit-py-plugins
60
+
pypandoc
61
];
62
63
# prevent double wrapping
···
68
69
meta = with lib; {
70
description = "Simple note taking with mobile-first design and Nextcloud sync";
71
+
homepage = "https://gitlab.gnome.org/World/iotas";
72
license = licenses.gpl3Plus;
73
platforms = platforms.linux;
74
+
mainProgram = "iotas";
75
maintainers = with maintainers; [ zendo ];
76
};
77
}