Merge pull request #169986 from WolfangAukang/dolt-fix
dolt: 0.37.4 -> 0.39.2
This commit is contained in:
commit
c2197c8599
2 changed files with 8 additions and 6 deletions
|
@ -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 ];
|
||||||
};
|
};
|
||||||
|
|
|
@ -15245,7 +15245,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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue