gitaly 16.0.1 -> 16.0.2 https://repology.org/project/gitaly/versions attrpath: gitaly Checking auto update branch... No auto update branch exists Old version 16.0.1" not present in master derivation file with contents: { lib , fetchFromGitLab , fetchFromGitHub , buildGoModule , pkg-config # libgit2 + dependencies , libgit2 , http-parser , openssl , pcre , zlib }: let version = "16.0.2"; package_version = "v${lib.versions.major version}"; gitaly_package = "gitlab.com/gitlab-org/gitaly/${package_version}"; commonOpts = { inherit version; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; sha256 = "sha256-dtGtWV+lfTp9pKipAHx3FUIPaUobiRLsKYbULpuIgRY="; }; vendorSha256 = "sha256-KBhTI70eReZGSd7RxwGXcUGa0wDo7q5tU9fUhrLeFO0="; ldflags = [ "-X ${gitaly_package}/internal/version.version=${version}" "-X ${gitaly_package}/internal/version.moduleVersion=${version}" ]; tags = [ "static,system_libgit2" ]; nativeBuildInputs = [ pkg-config ]; buildInputs = [ libgit2 openssl zlib pcre http-parser ]; doCheck = false; }; auxBins = buildGoModule ({ pname = "gitaly-aux"; subPackages = [ "cmd/gitaly-hooks" "cmd/gitaly-ssh" "cmd/gitaly-git2go" "cmd/gitaly-lfs-smudge" ]; } // commonOpts); in buildGoModule ({ pname = "gitaly"; subPackages = [ "cmd/gitaly" "cmd/gitaly-backup" ]; preConfigure = '' mkdir -p _build/bin cp -r ${auxBins}/bin/* _build/bin ''; outputs = [ "out" ]; meta = with lib; { homepage = "https://gitlab.com/gitlab-org/gitaly"; description = "A Git RPC service for handling all the git calls made by GitLab"; platforms = platforms.linux ++ [ "x86_64-darwin" ]; maintainers = with maintainers; [ roblabla globin talyz yayayayaka ]; license = licenses.mit; }; } // commonOpts)