summary refs log tree commit diff
path: root/pkgs/applications/misc/rescuetime
diff options
context:
space:
mode:
authorMrinal Purohit <github@mrinalpurohit.in>2019-10-11 10:57:04 +0530
committerMrinal Purohit <github@mrinalpurohit.in>2019-10-15 10:55:23 +0530
commitb3f415d89898d450baf3fb27fdd891884adefb43 (patch)
treeeff8b723adc3d8b5c49c701c62617051aab0e2b6 /pkgs/applications/misc/rescuetime
parent38070d58f49f57c0085d43a619b4ffde516357a9 (diff)
downloadnixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.tar
nixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.tar.gz
nixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.tar.bz2
nixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.tar.lz
nixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.tar.xz
nixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.tar.zst
nixpkgs-b3f415d89898d450baf3fb27fdd891884adefb43.zip
rescuetime: 2.14.3.1 -> 2.14.5.2
- Fix for Qt plugin not found
Diffstat (limited to 'pkgs/applications/misc/rescuetime')
-rw-r--r--pkgs/applications/misc/rescuetime/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix
index cd232088b5b..13ae1f1ba7d 100644
--- a/pkgs/applications/misc/rescuetime/default.nix
+++ b/pkgs/applications/misc/rescuetime/default.nix
@@ -1,21 +1,21 @@
-{ stdenv, lib, fetchurl, dpkg, patchelf, qt5, libXtst, libXext, libX11, makeWrapper, libXScrnSaver }:
+{ stdenv, lib, fetchurl, dpkg, patchelf, qt5, libXtst, libXext, libX11, mkDerivation, makeWrapper, libXScrnSaver }:
 
 let
   src =
     if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
       name = "rescuetime-installer.deb";
       url = "https://www.rescuetime.com/installers/rescuetime_current_i386.deb";
-      sha256 = "03bky9vja7fijz45n44b6gawd6q8yd30nx6nya9lqdlxd1bkqmji";
+      sha256 = "0mw8dh9z7pqan0yrhycmv39h5c1sc4mbw5l02cfnn17cy75xdiay";
     } else fetchurl {
       name = "rescuetime-installer.deb";
       url = "https://www.rescuetime.com/installers/rescuetime_current_amd64.deb";
-      sha256 = "03bky9vja7fijz45n44b6gawd6q8yd30nx6nya9lqdlxd1bkqmji";
+      sha256 = "1a6pc8vi2ab721kzyhvg6bmw24dr85dgmx2m9j9vbf3jyr85fv10";
     };
-in stdenv.mkDerivation {
+in mkDerivation {
   # https://www.rescuetime.com/updates/linux_release_notes.html
-  name = "rescuetime-2.14.3.1";
+  name = "rescuetime-2.14.5.2";
   inherit src;
-  buildInputs = [ dpkg makeWrapper ];
+  nativeBuildInputs = [ dpkg ];
   # avoid https://github.com/NixOS/patchelf/issues/99
   dontStrip = true;
   unpackPhase = ''