{ fetchFromGitHub, lib, buildGoModule }: buildGoModule rec { pname = "dolt"; version = "1.35.11"; src = fetchFromGitHub { owner = "dolthub"; repo = "dolt"; rev = "v${version}"; sha256 = "sha256-nOS6Gj6id9s03iEhhhj99v3t38i/AoFO72swi30fflw="; }; modRoot = "./go"; subPackages = [ "cmd/dolt" ]; vendorHash = "sha256-tNnfHyqBN49Z/F4Z68JfSa860uo0i2gAkKv2IDoONr4="; proxyVendor = true; doCheck = false; meta = with lib; { 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 ]; }; }