dolt: 0.37.4 -> 0.39.2

Updating GitHub reference and building Dolt with Go 1.18
main
P. R. d. O 2 years ago
parent 40696c3e6f
commit 42802b544f
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
  1. 10
      pkgs/servers/sql/dolt/default.nix
  2. 4
      pkgs/top-level/all-packages.nix

@ -2,24 +2,24 @@
buildGoModule rec {
pname = "dolt";
version = "0.37.4";
version = "0.39.2";
src = fetchFromGitHub {
owner = "liquidata-inc";
owner = "dolthub";
repo = "dolt";
rev = "v${version}";
sha256 = "sha256-cKX8idMmh9hQVPjO8rJWlp1nhtnzwwlLkelNw+LLBag=";
sha256 = "sha256-rCGjBb5aiDLPBKYX4jhHxtBDf3Xs1/p1DdsFmdfLNLM=";
};
modRoot = "./go";
subPackages = [ "cmd/dolt" "cmd/git-dolt" "cmd/git-dolt-smudge" ];
vendorSha256 = "sha256-vaYCo+jvw3qcLQ63oA8tq6G6Gxq50VTxK6IMBcEZXqs=";
vendorSha256 = "sha256-yemt7hUcLXgC42B2q4+1MalGd3jCMHcVD/Bpq8B2x7M=";
doCheck = false;
meta = with lib; {
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;
maintainers = with maintainers; [ danbst ];
};

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

Loading…
Cancel
Save