3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/misc/upwork/default.nix

59 lines
1.9 KiB
Nix
Raw Normal View History

2021-02-18 00:07:50 +00:00
{ lib, stdenv, fetchurl, dpkg, wrapGAppsHook, autoPatchelfHook
, alsa-lib, atk, at-spi2-atk, at-spi2-core, cairo, cups, dbus, expat, fontconfig, freetype
2021-08-12 17:00:11 +01:00
, gdk-pixbuf, glib, gtk3, libcxx, libdrm, libnotify, libpulseaudio, libuuid, libX11, libxcb
, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender
, libXScrnSaver, libXtst, mesa, nspr, nss, pango, systemd }:
2020-04-16 22:34:00 +01:00
stdenv.mkDerivation rec {
pname = "upwork";
2021-12-17 02:32:51 +00:00
version = "5.6.10.0";
2020-04-16 22:34:00 +01:00
src = fetchurl {
2021-12-17 02:32:51 +00:00
url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_10_0_b124e6f3a4944b32/${pname}_${version}_amd64.deb";
sha256 = "fd201ce817abe32e1b582bb4b55fef85ac8132806f5ddf0548fd25bbfd48833c";
2020-04-16 22:34:00 +01:00
};
2020-10-13 00:26:26 +01:00
nativeBuildInputs = [
2020-04-16 22:34:00 +01:00
dpkg
wrapGAppsHook
autoPatchelfHook
];
buildInputs = [
libcxx systemd libpulseaudio
2021-08-12 17:00:11 +01: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 22:34:00 +01:00
];
2021-01-15 05:42:41 +00:00
libPath = lib.makeLibraryPath buildInputs;
2020-04-16 22:34:00 +01:00
2021-10-19 13:54:34 +01:00
dontWrapGApps = true;
dontBuild = true;
dontConfigure = true;
2020-04-16 22:34:00 +01:00
unpackPhase = ''
dpkg-deb -x ${src} ./
'';
installPhase = ''
2021-02-18 00:07:50 +00:00
runHook preInstall
2020-04-16 22:34:00 +01:00
mv usr $out
mv opt $out
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}
2021-02-18 00:07:50 +00:00
runHook postInstall
2020-04-16 22:34:00 +01:00
'';
meta = with lib; {
2020-04-16 22:34:00 +01:00
description = "Online freelancing platform desktop application for time tracking";
homepage = "https://www.upwork.com/ab/downloads/";
license = licenses.unfree;
2020-10-13 00:27:16 +01:00
maintainers = with maintainers; [ zakkor wolfangaukang ];
2020-04-16 22:34:00 +01:00
};
2020-10-13 00:26:26 +01:00
}