dolt: modernize
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user