2022-11-12T13:38:44 minio-client 2022-10-29T10-09-23Z -> 2022-11-07T23-47-39Z https://github.com/minio/mc/releases 2022-11-12T13:38:47 attrpath: minio-client 2022-11-12T13:38:47 Checking auto update branch... 2022-11-12T13:38:47 No auto update branch exists 2022-11-12T13:38:47 Old version 2022-10-29T10-09-23Z" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, nixosTests }: buildGoModule rec { pname = "minio-client"; version = "2022-11-07T23-47-39Z"; src = fetchFromGitHub { owner = "minio"; repo = "mc"; rev = "RELEASE.${version}"; sha256 = "sha256-g7q2VONGySMlw+aWZfWnZ2TVvV4lOGMNXl/4IRQrEOs="; }; vendorSha256 = "sha256-KD3mhl5d3LhqH37AeNmfuk5+KktWdUTNGi5YNuhyMDk="; subPackages = [ "." ]; patchPhase = '' sed -i "s/Version.*/Version = \"${version}\"/g" cmd/build-constants.go sed -i "s/ReleaseTag.*/ReleaseTag = \"RELEASE.${version}\"/g" cmd/build-constants.go sed -i "s/CommitID.*/CommitID = \"${src.rev}\"/g" cmd/build-constants.go ''; doInstallCheck = true; installCheckPhase = '' $out/bin/mc --version | grep ${version} > /dev/null ''; passthru.tests.minio = nixosTests.minio; meta = with lib; { homepage = "https://github.com/minio/mc"; description = "A replacement for ls, cp, mkdir, diff and rsync commands for filesystems and object storage"; maintainers = with maintainers; [ bachp eelco ]; mainProgram = "mc"; platforms = platforms.unix; license = licenses.asl20; }; }