mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
59 lines
1.7 KiB
Nix
59 lines
1.7 KiB
Nix
{ lib, fetchFromGitHub, python3Packages, makeWrapper
|
|
, glibcLocales, gobject-introspection, gtk3, libsoup, libsecret
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "gtimelog";
|
|
version = "unstable-2020-05-16";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = pname;
|
|
repo = pname;
|
|
rev = "80682ddbf9e0d68b8c67257289784f3b49b543d8";
|
|
sha256 = "0qv2kv7vc3qqlzxsisgg31cmrkkqgnmxspbj10c5fhdmwzzwi0i9";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper gobject-introspection ];
|
|
buildInputs = [
|
|
glibcLocales gtk3 libsoup libsecret
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pygobject3 freezegun mock
|
|
];
|
|
|
|
checkPhase = ''
|
|
substituteInPlace runtests --replace "/usr/bin/env python3" "${python3Packages.python.interpreter}"
|
|
./runtests
|
|
'';
|
|
|
|
pythonImportsCheck = [ "gtimelog" ];
|
|
|
|
preFixup = ''
|
|
wrapProgram $out/bin/gtimelog \
|
|
--prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \
|
|
--prefix LD_LIBRARY_PATH ":" "${gtk3.out}/lib" \
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A time tracking app";
|
|
longDescription = ''
|
|
GTimeLog is a small time tracking application for GNOME.
|
|
It's main goal is to be as unintrusive as possible.
|
|
|
|
To run gtimelog successfully on a system that does not have full GNOME 3
|
|
installed, the following NixOS options should be set:
|
|
- programs.dconf.enable = true;
|
|
- services.gnome.gnome-keyring.enable = true;
|
|
|
|
In addition, the following packages should be added to the environment:
|
|
- gnome.adwaita-icon-theme
|
|
- gnome.dconf
|
|
'';
|
|
homepage = "https://gtimelog.org/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ oxzi ];
|
|
};
|
|
}
|