minio-client 2024-01-28T16-23-14Z -> 20240131T085940Z https://repology.org/project/minio-client/versions attrpath: minio-client Checking auto update branch... No auto update branch exists Old version 2024-01-28T16-23-14Z" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, nixosTests }: buildGoModule rec { pname = "minio-client"; version = "2024-01-31T08-59-40Z"; src = fetchFromGitHub { owner = "minio"; repo = "mc"; rev = "RELEASE.${version}"; sha256 = "sha256-SD/CtYQFWy7VFo2jT53LDQfH7fw14OOKAbImNeG/amE="; }; vendorHash = "sha256-wxFhj+oqj5WV/UkPZlmeJHF2WC4oLlZOql1qgSFs+zU="; 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"; license = licenses.asl20; }; }