about summary refs log tree commit diff
path: root/pkgs/applications/office/timeular
diff options
context:
space:
mode:
authorPawel Kruszewski <kruszewsky@gmail.com>2020-07-04 18:51:11 +0200
committerPawel Kruszewski <kruszewsky@gmail.com>2020-08-18 09:05:44 +0200
commit7e74f610fb0b38d032eea6e0f637a0e37330eaf4 (patch)
tree5b29039b2a10f7bff36e4a5c809eac404bf70d59 /pkgs/applications/office/timeular
parentbd0d0e935c54890dfd9e0f26dce80f72f4749ddb (diff)
timeular: init at 3.4.1
Diffstat (limited to 'pkgs/applications/office/timeular')
-rw-r--r--pkgs/applications/office/timeular/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/applications/office/timeular/default.nix b/pkgs/applications/office/timeular/default.nix
new file mode 100644
index 0000000000000..f0fc5c3738cc9
--- /dev/null
+++ b/pkgs/applications/office/timeular/default.nix
@@ -0,0 +1,45 @@
+{
+  stdenv,
+  fetchurl,
+  appimageTools,
+  libsecret
+}:
+
+let
+  version = "3.4.1";
+  pname = "timeular";
+  name = "${pname}-${version}";
+  src = fetchurl {
+    url = "https://s3.amazonaws.com/timeular-desktop-packages/linux/production/Timeular-${version}.AppImage";
+    sha256 = "1s5jjdl1nzq9yd582lqs904yl10mp0s25897zmifmcbw1vz38bar";
+  };
+  appimageContents = appimageTools.extractType2 {
+    inherit name src;
+  };
+in appimageTools.wrapType2 rec {
+  inherit name src;
+
+  extraPkgs = pkgs: with pkgs; [
+    libsecret
+  ];
+
+  extraInstallCommands = ''
+    mv $out/bin/{${name},${pname}}
+    install -m 444 -D ${appimageContents}/timeular.desktop $out/share/applications/timeular.desktop
+    install -m 444 -D ${appimageContents}/timeular.png $out/share/icons/hicolor/512x512/apps/timeular.png
+    substituteInPlace $out/share/applications/timeular.desktop --replace 'Exec=AppRun' 'Exec=${pname}'
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Timetracking by flipping 8-sided dice";
+    longDescription = ''
+      The Timeular Tracker is an 8-sided dice that sits on your desk.
+      Assign an activity to each side and flip to start tracking your time.
+      The desktop app tell you where every minute of your day is spent.
+    '';
+    homepage = https://timeular.com;
+    license = licenses.unfree;
+    maintainers = with maintainers; [ ktor ];
+    platforms = [ "x86_64-linux" ];
+  };
+}