dolt: 1.58.5 -> 1.59.2 (#440447)

This commit is contained in:
Nikolay Korotkiy
2025-09-07 14:18:30 +04:00
committed by GitHub
+9 -9
View File
@@ -4,28 +4,28 @@
buildGoModule,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "dolt";
version = "1.58.5";
version = "1.59.2";
src = fetchFromGitHub {
owner = "dolthub";
repo = "dolt";
rev = "v${version}";
sha256 = "sha256-ieMAld3wssub+vdNNassjpc3X1KPSNhR6GK/EmIwQ28=";
tag = "v${finalAttrs.version}";
hash = "sha256-qIV4pbyrN40joXCgmE0e1EDkfRaHC/G1lwdkpzrO5fU=";
};
modRoot = "./go";
subPackages = [ "cmd/dolt" ];
vendorHash = "sha256-Mr51zbGBnO0sb9KDBiidFpRZk7wHJqbY1fYnXwgqJA8=";
vendorHash = "sha256-DPo1xzV11Q9emVIlrBFQcWXGNXKfYOKzR/hi5nJJp34=";
proxyVendor = true;
doCheck = false;
meta = with lib; {
meta = {
description = "Relational database with version control and CLI a-la Git";
mainProgram = "dolt";
homepage = "https://github.com/dolthub/dolt";
license = licenses.asl20;
maintainers = with maintainers; [ danbst ];
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ danbst ];
};
}
})