rclone: 1.61.1 -> 1.62.2

This commit is contained in:
Sandro Jäckel 2023-03-16 17:14:31 +01:00
parent 16d20e5824
commit 10314ea925
No known key found for this signature in database
GPG Key ID: B1763F8651144063

View File

@ -5,16 +5,16 @@
buildGoModule rec {
pname = "rclone";
version = "1.61.1";
version = "1.62.2";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
sha256 = "sha256-mBnpmCzuMCXZPM3Tq2SsOPwEfTUn1StahkB5U/6Fe+A=";
sha256 = "sha256-nG3XW6OGzfbvkBmlmeOCnVRFun3EWIVLLvMXGhOAi+4=";
};
vendorSha256 = "sha256-EGNRKSlpdH/NNfLzSDL3lQzArVsVM6oRkyZm31V8cgM=";
vendorSha256 = "sha256-UA6PlhKxJ9wpg3mbiJ4Mqc4npwEBa93qi6WrQR8JQSk=";
subPackages = [ "." ];
@ -30,7 +30,7 @@ buildGoModule rec {
postInstall =
let
rcloneBin =
if stdenv.buildPlatform == stdenv.hostPlatform
if stdenv.buildPlatform.canExecute stdenv.hostPlatform
then "$out"
else lib.getBin buildPackages.rclone;
in
@ -45,8 +45,8 @@ buildGoModule rec {
# as the setuid wrapper is required as non-root on NixOS.
''
wrapProgram $out/bin/rclone \
--suffix PATH : "${lib.makeBinPath [ fuse ] }" \
--prefix LD_LIBRARY_PATH : "${fuse}/lib"
--suffix PATH : "${lib.makeBinPath [ fuse ] }" \
--prefix LD_LIBRARY_PATH : "${fuse}/lib"
'';
meta = with lib; {