dolt: 0.37.4 -> 0.39.2

Updating GitHub reference and building Dolt with Go 1.18
This commit is contained in:
P. R. d. O 2022-04-23 11:59:24 -06:00
parent 40696c3e6f
commit 42802b544f
No known key found for this signature in database
GPG key ID: 7B0FF33FF90110C7
2 changed files with 8 additions and 6 deletions

View file

@ -2,24 +2,24 @@
buildGoModule rec { buildGoModule rec {
pname = "dolt"; pname = "dolt";
version = "0.37.4"; version = "0.39.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "liquidata-inc"; owner = "dolthub";
repo = "dolt"; repo = "dolt";
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-cKX8idMmh9hQVPjO8rJWlp1nhtnzwwlLkelNw+LLBag="; sha256 = "sha256-rCGjBb5aiDLPBKYX4jhHxtBDf3Xs1/p1DdsFmdfLNLM=";
}; };
modRoot = "./go"; modRoot = "./go";
subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ]; subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ];
vendorSha256 = "sha256-vaYCo+jvw3qcLQ63oA8tq6G6Gxq50VTxK6IMBcEZXqs="; vendorSha256 = "sha256-yemt7hUcLXgC42B2q4+1MalGd3jCMHcVD/Bpq8B2x7M=";
doCheck = false; doCheck = false;
meta = with lib; { meta = with lib; {
description = "Relational database with version control and CLI a-la Git"; description = "Relational database with version control and CLI a-la Git";
homepage = "https://github.com/liquidata-inc/dolt"; homepage = "https://github.com/dolthub/dolt";
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [ danbst ]; maintainers = with maintainers; [ danbst ];
}; };

View file

@ -15243,7 +15243,9 @@ with pkgs;
doit = with python3Packages; toPythonApplication doit; doit = with python3Packages; toPythonApplication doit;
dolt = callPackage ../servers/sql/dolt { }; dolt = callPackage ../servers/sql/dolt {
buildGoModule = buildGo118Module;
};
dot2tex = with python3.pkgs; toPythonApplication dot2tex; dot2tex = with python3.pkgs; toPythonApplication dot2tex;