ferretdb 1.2.0 -> 1.2.1 https://github.com/FerretDB/FerretDB/releases attrpath: ferretdb Checking auto update branch... No auto update branch exists Old version 1.2.0" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "ferretdb"; version = "1.2.1"; src = fetchFromGitHub { owner = "FerretDB"; repo = "FerretDB"; rev = "v${version}"; sha256 = "sha256-j3gEC4/i+C35P8wf/A9lA5rnUB669/J+GpN/iiyjSlU="; }; postPatch = '' echo v${version} > build/version/version.txt echo nixpkgs > build/version/package.txt ''; vendorSha256 = "sha256-6sddJcNzPxMarP0/QxpeWF0qXR8wT2kU6N6CtGKG1Tk="; CGO_ENABLED = 0; subPackages = [ "cmd/ferretdb" ]; tags = [ "ferretdb_tigris" ]; # tests in cmd/ferretdb are not production relevant doCheck = false; # the binary panics if something required wasn't set during compilation doInstallCheck = true; installCheckPhase = '' $out/bin/ferretdb --version | grep ${version} ''; meta = with lib; { description = "A truly Open Source MongoDB alternative"; homepage = "https://www.ferretdb.io/"; license = licenses.asl20; maintainers = with maintainers; [ dit7ya noisersup julienmalka ]; }; }