mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
, alsa-utils
|
|
, gobject-introspection
|
|
, libappindicator-gtk3
|
|
, libnotify
|
|
, wlrctl
|
|
, gtk3
|
|
, safeeyes
|
|
, testers
|
|
, xprintidle
|
|
, xprop
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "safeeyes";
|
|
version = "2.1.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-tvsBTf6+zKBzB5aL+LUcEvE4jmVHnnoY0L4xoKMJ0vM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libappindicator-gtk3
|
|
libnotify
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
babel
|
|
psutil
|
|
xlib
|
|
pygobject3
|
|
dbus-python
|
|
croniter
|
|
];
|
|
|
|
# Prevent double wrapping, let the Python wrapper use the args in preFixup.
|
|
dontWrapGApps = true;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/applications
|
|
cp -r safeeyes/platform/icons $out/share/icons/
|
|
cp safeeyes/platform/io.github.slgobinath.SafeEyes.desktop $out/share/applications/io.github.slgobinath.SafeEyes.desktop
|
|
'';
|
|
|
|
preFixup = ''
|
|
makeWrapperArgs+=(
|
|
"''${gappsWrapperArgs[@]}"
|
|
--prefix PATH : ${lib.makeBinPath [ alsa-utils wlrctl xprintidle xprop ]}
|
|
)
|
|
'';
|
|
|
|
doCheck = false; # no tests
|
|
|
|
passthru.tests.version = testers.testVersion { package = safeeyes; };
|
|
|
|
meta = with lib; {
|
|
homepage = "http://slgobinath.github.io/SafeEyes";
|
|
description = "Protect your eyes from eye strain using this simple and beautiful, yet extensible break reminder. A Free and Open Source Linux alternative to EyeLeo";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ srghma ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "safeeyes";
|
|
};
|
|
}
|