buildkit 0.13.0 -> 0.13.1 https://repology.org/project/buildkit/versions attrpath: buildkit Checking auto update branch... No auto update branch exists Old version 0.13.0" not present in master derivation file with contents: { lib, stdenv, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "buildkit"; version = "0.13.1"; src = fetchFromGitHub { owner = "moby"; repo = "buildkit"; rev = "v${version}"; hash = "sha256-BrLDY3T40ndkjuWCx5kLZvMBp8xI5d3MFg9M3IpafWM="; }; vendorHash = null; subPackages = [ "cmd/buildctl" ] ++ lib.optionals stdenv.isLinux [ "cmd/buildkitd" ]; ldflags = [ "-s" "-w" "-X github.com/moby/buildkit/version.Version=${version}" "-X github.com/moby/buildkit/version.Revision=${src.rev}" ]; doCheck = false; meta = with lib; { description = "Concurrent, cache-efficient, and Dockerfile-agnostic builder toolkit"; homepage = "https://github.com/moby/buildkit"; changelog = "https://github.com/moby/buildkit/releases/tag/v${version}"; license = licenses.asl20; maintainers = with maintainers; [ vdemeester marsam developer-guy ]; mainProgram = "buildctl"; }; }