summary refs log tree commit diff
path: root/pkgs/applications/misc/stretchly/default.nix
blob: 75f3be85dadf654a45e613669fa74ac58a276734 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{ GConf
, alsaLib
, at-spi2-atk
, at-spi2-core
, atk
, buildFHSUserEnv
, cairo
, common-updater-scripts
, coreutils
, cups
, dbus
, expat
, fetchurl
, fontconfig
, gdk-pixbuf
, glib
, gtk2
, gtk3
, lib
, libX11
, libXScrnSaver
, libXcomposite
, libXcursor
, libXdamage
, libXext
, libXfixes
, libXi
, libXrandr
, libXrender
, libXtst
, libappindicator
, libdrm
, libnotify
, libpciaccess
, libpng12
, libuuid
, libxcb
, nspr
, nss
, pango
, pciutils
, pulseaudio
, runtimeShell
, stdenv
, udev
, wrapGAppsHook
, writeScript
, file
}:

let
  libs = [
    GConf
    alsaLib
    at-spi2-atk
    at-spi2-core
    atk
    cairo
    cups
    dbus
    expat
    fontconfig
    gdk-pixbuf
    glib
    gtk2
    gtk3
    libX11
    libXScrnSaver
    libXcomposite
    libXcursor
    libXdamage
    libXext
    libXfixes
    libXi
    libXrandr
    libXrender
    libXtst
    libappindicator
    libdrm
    libnotify
    libpciaccess
    libpng12
    libuuid
    libxcb
    nspr
    nss
    pango
    pciutils
    pulseaudio
    stdenv.cc.cc.lib
    udev
  ];

  libPath = lib.makeLibraryPath libs;

  stretchly =
    stdenv.mkDerivation rec {
      pname = "stretchly";
      version = "0.21.0";

      src = fetchurl {
        url = "https://github.com/hovancik/stretchly/releases/download/v${version}/stretchly-${version}.tar.xz";
        sha256 = "1gyyr22xq8s4miiacs8wqhp7lxnwvkvlwhngnq8671l62s6iyjzl";
      };

      nativeBuildInputs = [
        wrapGAppsHook
        coreutils
      ];

      buildInputs = libs;

      dontPatchELF = true;
      dontBuild = true;
      dontConfigure = true;

      installPhase = ''
        mkdir -p $out/bin $out/lib/stretchly
        cp -r ./* $out/lib/stretchly/
        ln -s $out/lib/stretchly/stretchly $out/bin/
      '';

      preFixup = ''
        patchelf --set-rpath "${libPath}" $out/lib/stretchly/libffmpeg.so
        patchelf --set-rpath "${libPath}" $out/lib/stretchly/libEGL.so
        patchelf --set-rpath "${libPath}" $out/lib/stretchly/libGLESv2.so
        patchelf --set-rpath "${libPath}" $out/lib/stretchly/swiftshader/libEGL.so
        patchelf --set-rpath "${libPath}" $out/lib/stretchly/swiftshader/libGLESv2.so

        patchelf \
          --set-rpath "$out/lib/stretchly:${libPath}" \
          --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
          $out/lib/stretchly/stretchly

        patchelf \
          --set-rpath "$out/lib/stretchly:${libPath}" \
          --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
          $out/lib/stretchly/chrome-sandbox
      '';

      meta = with stdenv.lib; {
        description = "A break time reminder app";
        longDescription = ''
          stretchly is a cross-platform electron app that reminds you to take
          breaks when working on your computer. By default, it runs in your tray
          and displays a reminder window containing an idea for a microbreak for 20
          seconds every 10 minutes. Every 30 minutes, it displays a window
          containing an idea for a longer 5 minute break.
        '';
        homepage = https://hovancik.net/stretchly;
        downloadPage = https://hovancik.net/stretchly/downloads/;
        license = licenses.bsd2;
        maintainers = with maintainers; [ cdepillabout ];
        platforms = platforms.linux;
      };
    };

in

buildFHSUserEnv {
  inherit (stretchly) meta;

  name = "stretchly";

  targetPkgs = pkgs: [
     stretchly
  ];

  runScript = "stretchly";

  passthru = {
    updateScript = writeScript "update-stretchly" ''
      #!${runtimeShell}

      set -eu -o pipefail

      # get the latest release version
      latest_version=$(curl -s https://api.github.com/repos/hovancik/stretchly/releases/latest | jq --raw-output .tag_name | sed -e 's/^v//')

      echo "updating to $latest_version..."

      ${common-updater-scripts}/bin/update-source-version stretchly.passthru.stretchlyWrapped "$latest_version"
    '';

    stretchlyWrapped = stretchly;
  };
}