biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / rescuetime / default.nix
blob41988c2829578dfacdc7b707102f300faea6bbbd
1 { stdenv, lib, fetchurl, dpkg, patchelf, qt5, libXtst, libXext, libX11, mkDerivation, libXScrnSaver, writeScript, common-updater-scripts, curl, pup }:
3 let
4   version = "2.16.5.1";
5   src =
6     if stdenv.hostPlatform.system == "i686-linux" then fetchurl {
7       name = "rescuetime-installer.deb";
8       url = "https://www.rescuetime.com/installers/rescuetime_${version}_i386.deb";
9       sha256 = "1xrvyy0higc1fbc8ascpaszvg2bl6x0a35bzmdq6dkay48hnrd8b";
10     } else fetchurl {
11       name = "rescuetime-installer.deb";
12       url = "https://www.rescuetime.com/installers/rescuetime_${version}_amd64.deb";
13       sha256 = "09ng0yal66d533vzfv27k9l2va03rqbqmsni43qi3hgx7w9wx5ii";
14     };
15 in mkDerivation rec {
16   # https://www.rescuetime.com/updates/linux_release_notes.html
17   inherit version;
18   pname = "rescuetime";
19   inherit src;
20   nativeBuildInputs = [ dpkg ];
21   # avoid https://github.com/NixOS/patchelf/issues/99
22   dontStrip = true;
23   unpackPhase = ''
24     mkdir pkg
25     dpkg-deb -x $src pkg
26     sourceRoot=pkg
27   '';
28   installPhase = ''
29     mkdir -p $out/bin
30     cp usr/bin/rescuetime $out/bin
32     ${patchelf}/bin/patchelf \
33       --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
34       --set-rpath "${lib.makeLibraryPath [ qt5.qtbase libXtst libXext libX11 libXScrnSaver ]}" \
35       $out/bin/rescuetime
36   '';
38   passthru.updateScript = writeScript "${pname}-updater" ''
39     #!${stdenv.shell}
40     set -eu -o pipefail
41     PATH=${lib.makeBinPath [curl pup common-updater-scripts]}:$PATH
42     latestVersion="$(curl -sS https://www.rescuetime.com/release-notes/linux | pup '.release:first-of-type h2 strong text{}' | tr -d '\n')"
44     for platform in ${lib.concatStringsSep " " meta.platforms}; do
45       update-source-version ${pname} "$latestVersion" --system=$platform --ignore-same-version
46     done
47   '';
49   meta = with lib; {
50     description = "Helps you understand your daily habits so you can focus and be more productive";
51     homepage    = "https://www.rescuetime.com";
52     maintainers = [ ];
53     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
54     license     = licenses.unfree;
55     platforms   = [ "i686-linux" "x86_64-linux" ];
56   };