nixpkgs/pkgs/applications/office/gtg/default.nix

76 lines
1.6 KiB
Nix
Raw Normal View History

2020-08-04 19:18:47 +02:00
{ stdenv
, fetchFromGitHub
, meson
, python3Packages
, ninja
, gtk3
, wrapGAppsHook
, glib
, itstool
, gettext
, pango
, gdk-pixbuf
, gobject-introspection
}:
python3Packages.buildPythonApplication rec {
pname = "gtg";
version = "unstable-2020-09-16";
2020-08-04 19:18:47 +02:00
src = fetchFromGitHub {
owner = "getting-things-gnome";
repo = "gtg";
rev = "1be991c6d7f7b2e4b8ac16f82e8a07f9dce4272f";
sha256 = "1f5acpjwnp08c78dds7xm22qjzcfnx2qs121yvm3rswkh27s4n23";
2020-08-04 19:18:47 +02:00
};
nativeBuildInputs = [
meson
ninja
itstool
gettext
2020-08-04 19:18:47 +02:00
wrapGAppsHook
gobject-introspection
];
buildInputs = [
glib
gtk3
pango
gdk-pixbuf
];
propagatedBuildInputs = with python3Packages; [
pycairo
pygobject3
lxml
dbus-python
gst-python
liblarch
];
2020-09-01 21:31:43 +02:00
checkInputs = with python3Packages; [
nose
mock
];
2020-08-04 19:18:47 +02:00
format = "other";
strictDeps = false; # gobject-introspection does not run with strictDeps (https://github.com/NixOS/nixpkgs/issues/56943)
2020-08-04 19:18:47 +02:00
2020-09-01 21:31:43 +02:00
checkPhase = "python3 ../run-tests";
2020-08-04 19:18:47 +02:00
meta = with stdenv.lib; {
description = " A personal tasks and TODO-list items organizer";
longDescription = ''
"Getting Things GNOME" (GTG) is a personal tasks and ToDo list organizer inspired by the "Getting Things Done" (GTD) methodology.
2020-08-04 19:18:47 +02:00
GTG is intended to help you track everything you need to do and need to know, from small tasks to large projects.
'';
2020-08-04 19:18:47 +02:00
homepage = "https://wiki.gnome.org/Apps/GTG";
downloadPage = "https://github.com/getting-things-gnome/gtg/releases";
license = licenses.gpl3Plus;
2020-08-04 19:18:47 +02:00
maintainers = with maintainers; [ oyren ];
platforms = platforms.linux;
2020-08-04 19:18:47 +02:00
};
}