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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

69 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, requireFile, dpkg, wrapGAppsHook, autoPatchelfHook
, alsa-lib, atk, at-spi2-atk, at-spi2-core, cairo, cups, dbus, expat, fontconfig, freetype
2021-08-12 16:00:11 +00:00
, gdk-pixbuf, glib, gtk3, libcxx, libdrm, libnotify, libpulseaudio, libuuid, libX11, libxcb
, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender
2022-04-09 17:25:46 +00:00
, libXScrnSaver, libXtst, mesa, nspr, nss, openssl, pango, systemd }:
2020-04-16 21:34:00 +00:00
stdenv.mkDerivation rec {
pname = "upwork";
2023-07-03 14:17:58 +00:00
version = "5.8.0.31";
2020-04-16 21:34:00 +00:00
src = requireFile {
name = "${pname}_${version}_amd64.deb";
url = "https://www.upwork.com/ab/downloads/os/linux/";
2023-07-03 14:17:58 +00:00
sha256 = "sha256-tQV6v0U6xxqBl7nQaBhXSrc9iv+7SPHfABTiJJQDnPI=";
2020-04-16 21:34:00 +00:00
};
2020-10-12 23:26:26 +00:00
nativeBuildInputs = [
2020-04-16 21:34:00 +00:00
dpkg
wrapGAppsHook
autoPatchelfHook
];
buildInputs = [
libcxx systemd libpulseaudio
2021-08-12 16:00:11 +00:00
stdenv.cc.cc alsa-lib atk at-spi2-atk at-spi2-core cairo cups
dbus expat fontconfig freetype gdk-pixbuf glib gtk3 libdrm libnotify
libuuid libX11 libxcb libXcomposite libXcursor libXdamage libXext libXfixes
libXi libXrandr libXrender libXScrnSaver libXtst mesa nspr nss pango systemd
2020-04-16 21:34:00 +00:00
];
2021-01-15 05:42:41 +00:00
libPath = lib.makeLibraryPath buildInputs;
2020-04-16 21:34:00 +00:00
2021-10-19 12:54:34 +00:00
dontWrapGApps = true;
2020-04-16 21:34:00 +00:00
unpackPhase = ''
dpkg-deb -x ${src} ./
'';
installPhase = ''
2021-02-18 00:07:50 +00:00
runHook preInstall
2022-04-09 17:25:46 +00:00
2020-04-16 21:34:00 +00:00
mv usr $out
mv opt $out
2022-04-09 17:25:46 +00:00
# Now it requires lib{ssl,crypto}.so.1.0.0. Fix based on Spotify pkg.
# https://github.com/NixOS/nixpkgs/blob/efea022d6fe0da84aa6613d4ddeafb80de713457/pkgs/applications/audio/spotify/default.nix#L129
mkdir -p $out/lib/upwork
ln -s ${lib.getLib openssl}/lib/libssl.so $out/lib/upwork/libssl.so.1.0.0
ln -s ${lib.getLib openssl}/lib/libcrypto.so $out/lib/upwork/libcrypto.so.1.0.0
2020-04-16 21:34:00 +00:00
sed -e "s|/opt/Upwork|$out/bin|g" -i $out/share/applications/upwork.desktop
makeWrapper $out/opt/Upwork/upwork \
$out/bin/upwork \
--prefix XDG_DATA_DIRS : "${gtk3}/share/gsettings-schemas/${gtk3.name}/" \
--prefix LD_LIBRARY_PATH : ${libPath}
2022-04-09 17:25:46 +00:00
2021-02-18 00:07:50 +00:00
runHook postInstall
2020-04-16 21:34:00 +00:00
'';
meta = with lib; {
2020-04-16 21:34:00 +00:00
description = "Online freelancing platform desktop application for time tracking";
homepage = "https://www.upwork.com/ab/downloads/";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2020-04-16 21:34:00 +00:00
license = licenses.unfree;
platforms = [ "x86_64-linux" ];
2020-10-12 23:27:16 +00:00
maintainers = with maintainers; [ zakkor wolfangaukang ];
2020-04-16 21:34:00 +00:00
};
2020-10-12 23:26:26 +00:00
}