Merge pull request #127590 from kamadorueda/master
timedoctor: init at 3.12.12
This commit is contained in:
commit
3a111c3df0
123
pkgs/applications/office/timedoctor/default.nix
Normal file
123
pkgs/applications/office/timedoctor/default.nix
Normal file
@ -0,0 +1,123 @@
|
|||||||
|
{ appimageTools
|
||||||
|
, fetchurl
|
||||||
|
, lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
# You can debug this package with: $ ELECTRON_ENABLE_LOGGING=true timedoctor
|
||||||
|
let
|
||||||
|
version = "3.12.12";
|
||||||
|
sha256 = "01j149c6lacgysll3sajxlb43m1al08kdcwc6zyzw80nrp4iagf6";
|
||||||
|
in
|
||||||
|
appimageTools.wrapType2 {
|
||||||
|
name = "timedoctor-${version}";
|
||||||
|
src = fetchurl {
|
||||||
|
inherit sha256;
|
||||||
|
url = "https://repo2.timedoctor.com/td-desktop-hybrid/prod/v${version}/timedoctor-desktop_${version}_linux-x86_64.AppImage";
|
||||||
|
};
|
||||||
|
multiPkgs = _: with _; [
|
||||||
|
alsaLib
|
||||||
|
atk
|
||||||
|
at-spi2-atk
|
||||||
|
at-spi2-core
|
||||||
|
cairo
|
||||||
|
coreutils
|
||||||
|
cups
|
||||||
|
dbus
|
||||||
|
dbus.lib
|
||||||
|
desktop-file-utils
|
||||||
|
expat
|
||||||
|
expat.dev
|
||||||
|
file
|
||||||
|
freetype
|
||||||
|
gcc
|
||||||
|
gcc-unwrapped.lib
|
||||||
|
gdb
|
||||||
|
gdk-pixbuf
|
||||||
|
git
|
||||||
|
glib
|
||||||
|
glibc
|
||||||
|
gnome.gdk_pixbuf
|
||||||
|
gnome.gtk
|
||||||
|
gnome.gtk.dev
|
||||||
|
gnome.zenity
|
||||||
|
gnome2.GConf
|
||||||
|
gnumake
|
||||||
|
gnutar
|
||||||
|
gpsd
|
||||||
|
gtk3
|
||||||
|
gtk3.dev
|
||||||
|
gtk3-x11
|
||||||
|
gtk3-x11.dev
|
||||||
|
kdialog
|
||||||
|
libappindicator-gtk2.out
|
||||||
|
libexif
|
||||||
|
(libjpeg.override { enableJpeg8 = true; }).out
|
||||||
|
libnotify
|
||||||
|
libpng
|
||||||
|
libxml2
|
||||||
|
libxslt
|
||||||
|
netcat
|
||||||
|
nettools
|
||||||
|
nodePackages.asar
|
||||||
|
nspr
|
||||||
|
nss
|
||||||
|
openjdk
|
||||||
|
pango
|
||||||
|
patchelf
|
||||||
|
python38
|
||||||
|
strace
|
||||||
|
sqlite
|
||||||
|
sqlite.dev
|
||||||
|
udev
|
||||||
|
unzip
|
||||||
|
utillinux
|
||||||
|
watch
|
||||||
|
wget
|
||||||
|
which
|
||||||
|
wrapGAppsHook
|
||||||
|
xdg_utils
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXau
|
||||||
|
xorg.libXaw
|
||||||
|
xorg.libXaw3d
|
||||||
|
xorg.libxcb
|
||||||
|
xorg.libXcomposite
|
||||||
|
xorg.libXcursor
|
||||||
|
xorg.libXdamage
|
||||||
|
xorg.libXdmcp
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXfont
|
||||||
|
xorg.libXfont2
|
||||||
|
xorg.libXft
|
||||||
|
xorg.libXi
|
||||||
|
xorg.libXinerama
|
||||||
|
xorg.libXmu
|
||||||
|
xorg.libXp
|
||||||
|
xorg.libXpm
|
||||||
|
xorg.libXpresent
|
||||||
|
xorg.libXrandr
|
||||||
|
xorg.libXrender
|
||||||
|
xorg.libXres
|
||||||
|
xorg.libXScrnSaver
|
||||||
|
xorg.libXt
|
||||||
|
xorg.libXTrap
|
||||||
|
xorg.libXtst
|
||||||
|
xorg.libXv
|
||||||
|
xorg.libXvMC
|
||||||
|
xorg.libXxf86dga
|
||||||
|
xorg.libXxf86misc
|
||||||
|
xorg.libXxf86vm
|
||||||
|
xorg.xcbutilkeysyms
|
||||||
|
zip
|
||||||
|
zlib
|
||||||
|
zsh
|
||||||
|
];
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Employee time tracking software";
|
||||||
|
homepage = "https://www.timedoctor.com";
|
||||||
|
license = licenses.unfree;
|
||||||
|
maintainers = with maintainers; [ kamadorueda ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
@ -1010,6 +1010,8 @@ in
|
|||||||
|
|
||||||
tilix = callPackage ../applications/terminal-emulators/tilix { };
|
tilix = callPackage ../applications/terminal-emulators/tilix { };
|
||||||
|
|
||||||
|
timedoctor = callPackage ../applications/office/timedoctor { };
|
||||||
|
|
||||||
twine = with python3Packages; toPythonApplication twine;
|
twine = with python3Packages; toPythonApplication twine;
|
||||||
|
|
||||||
wayst = callPackage ../applications/terminal-emulators/wayst { };
|
wayst = callPackage ../applications/terminal-emulators/wayst { };
|
||||||
|
Loading…
Reference in New Issue
Block a user