dolt: modernize

This commit is contained in:
Nikolay Korotkiy
2025-09-07 00:37:58 +04:00
parent 087c2167c5
commit 3176993d8a
+7 -7
View File
@@ -4,15 +4,15 @@
buildGoModule,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "dolt";
version = "1.59.2";
src = fetchFromGitHub {
owner = "dolthub";
repo = "dolt";
rev = "v${version}";
sha256 = "sha256-qIV4pbyrN40joXCgmE0e1EDkfRaHC/G1lwdkpzrO5fU=";
tag = "v${finalAttrs.version}";
hash = "sha256-qIV4pbyrN40joXCgmE0e1EDkfRaHC/G1lwdkpzrO5fU=";
};
modRoot = "./go";
@@ -21,11 +21,11 @@ buildGoModule rec {
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 ];
};
}
})