mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 01:16:57 +01:00
dolt: 0.37.4 -> 0.39.2
Updating GitHub reference and building Dolt with Go 1.18
This commit is contained in:
parent
40696c3e6f
commit
42802b544f
2 changed files with 8 additions and 6 deletions
|
@ -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…
Reference in a new issue