nixpkgs/pkgs/applications/misc/hubstaff/default.nix

67 lines
1.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, unzip, makeWrapper, libX11, zlib, libSM, libICE
2018-01-27 18:00:54 +00:00
, libXext , freetype, libXrender, fontconfig, libXft, libXinerama
, libXfixes, libXScrnSaver, libnotify, glib , gtk3, libappindicator-gtk3
, curl }:
2017-09-01 21:25:31 +00:00
let
2019-02-12 19:56:49 +00:00
data = builtins.fromJSON (builtins.readFile ./revision.json);
inherit (data) version url sha256;
2017-09-01 21:25:31 +00:00
2021-01-15 05:42:41 +00:00
rpath = lib.makeLibraryPath
2017-09-01 21:25:31 +00:00
[ libX11 zlib libSM libICE libXext freetype libXrender fontconfig libXft
libXinerama stdenv.cc.cc.lib libnotify glib gtk3 libappindicator-gtk3
2018-01-27 18:00:54 +00:00
curl libXfixes libXScrnSaver ];
2017-09-01 21:25:31 +00:00
in
stdenv.mkDerivation {
2019-08-13 21:52:01 +00:00
pname = "hubstaff";
inherit version;
2017-09-01 21:25:31 +00:00
2019-02-12 19:56:49 +00:00
src = fetchurl { inherit sha256 url; };
2017-09-01 21:25:31 +00:00
nativeBuildInputs = [ unzip makeWrapper ];
unpackCmd = ''
# MojoSetups have a ZIP file at the end. ZIPs magic string is
2018-01-27 18:00:54 +00:00
# most often PK\x03\x04. This has worked for all past updates,
2017-09-01 21:25:31 +00:00
# but feel free to come up with something more reasonable.
dataZipOffset=$(grep --max-count=1 --byte-offset --only-matching --text ''$'PK\x03\x04' $curSrc | cut -d: -f1)
2017-09-01 21:25:31 +00:00
dd bs=$dataZipOffset skip=1 if=$curSrc of=data.zip 2>/dev/null
unzip -q data.zip "data/*"
rm data.zip
'';
dontBuild = true;
installPhase = ''
# TODO: handle 32-bit arch?
rm -r x86
2018-01-27 18:00:54 +00:00
rm -r x86_64/lib64
2017-09-01 21:25:31 +00:00
opt=$out/opt/hubstaff
mkdir -p $out/bin $opt
cp -r . $opt/
2018-01-27 18:00:54 +00:00
for f in "$opt/x86_64/"*.bin.x86_64 ; do
patchelf --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) $f
wrapProgram $f --prefix LD_LIBRARY_PATH : ${rpath}
done
2017-09-01 21:25:31 +00:00
2018-01-27 18:00:54 +00:00
ln -s $opt/x86_64/HubstaffClient.bin.x86_64 $out/bin/HubstaffClient
2017-09-01 21:25:31 +00:00
# Why is this needed? SEGV otherwise.
ln -s $opt/data/resources $opt/x86_64/resources
'';
meta = with lib; {
2017-09-01 21:25:31 +00:00
description = "Time tracking software";
homepage = "https://hubstaff.com/";
2017-09-01 21:25:31 +00:00
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
2019-05-31 09:07:14 +00:00
maintainers = with maintainers; [ michalrus srghma ];
2017-09-01 21:25:31 +00:00
};
}