upwork: 5.6.8.0 -> 5.6.9.3

This commit is contained in:
P. R. d. O 2021-10-19 06:54:34 -06:00
parent 2491602088
commit 25ad00d83d
No known key found for this signature in database
GPG key ID: 7B0FF33FF90110C7

View file

@ -6,15 +6,13 @@
stdenv.mkDerivation rec {
pname = "upwork";
version = "5.6.8.0";
version = "5.6.9.3";
src = fetchurl {
url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_8_0_836f43f6f6be4149/${pname}_${version}_amd64.deb";
sha256 = "b3a52f773d633837882dc107b206006325722ca5d5d5a1e8bdf5453f872e1b6f";
url = "https://upwork-usw2-desktopapp.upwork.com/binaries/v5_6_9_3_10c2eb9781db4d7f/${pname}_${version}_amd64.deb";
sha256 = "0b884aa6992d438cee09f58673780218a00a823e03c114b0c753947020c0a327";
};
dontWrapGApps = true;
nativeBuildInputs = [
dpkg
wrapGAppsHook
@ -31,6 +29,10 @@ stdenv.mkDerivation rec {
libPath = lib.makeLibraryPath buildInputs;
dontWrapGApps = true;
dontBuild = true;
dontConfigure = true;
unpackPhase = ''
dpkg-deb -x ${src} ./
'';