lol

Merge pull request #39413 from dtzWill/update/mendeley-1.18

mendeley: 1.17.3 -> 1.18, touchup update script

authored by

Will Dietz and committed by
GitHub
e630e9da 51a345c6

+5 -5
+3 -3
pkgs/applications/office/mendeley/default.nix
··· 44 44 then "i386" 45 45 else "amd64"; 46 46 47 - shortVersion = "1.17.13-stable"; 47 + shortVersion = "1.18-stable"; 48 48 49 49 version = "${shortVersion}_${arch}"; 50 50 51 51 url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb"; 52 52 sha256 = if stdenv.system == arch32 53 - then "0q4x62k00whmq8lskphpcxc610cvclxzcr5k0v7pxjxs9sx5yx43" 54 - else "01ylyily1hip35z0d4qkdpbzp5yn4r015psc5773xsqlgrnlwjm3"; 53 + then "046v1j4sc6m0bf89f52zsg8riygrhldplyih5p0cjhcsd45q6fx8" 54 + else "072fppgxhiryb6m1fb4qvq8nbblx88xpknnklygch1sw0lyks69h"; 55 55 56 56 deps = [ 57 57 qtbase
+2 -2
pkgs/applications/office/mendeley/update.nix
··· 15 15 } 16 16 17 17 amd64URL=$(follow https://www.mendeley.com/repositories/ubuntu/stable/amd64/mendeleydesktop-latest) 18 - amd64V=$(basename $amd64URL|grep -m1 -o "[0-9]\+\.[0-9]\+\.[0-9]\+") 18 + amd64V=$(basename $amd64URL|grep -m1 -o "[0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?") 19 19 i386URL=$(follow https://www.mendeley.com/repositories/ubuntu/stable/i386/mendeleydesktop-latest) 20 - i386V=$(basename $i386URL|grep -m1 -o "[0-9]\+\.[0-9]\+\.[0-9]\+") 20 + i386V=$(basename $i386URL|grep -m1 -o "[0-9]\+\.[0-9]\+\(\.[0-9]\+\)\?") 21 21 22 22 echo "amd64 version: $amd64V" 23 23 echo "i386 version: $i386V"