tidb: init at 6.5.0
This commit is contained in:
parent
8f08140d73
commit
93aa5b07fc
2 changed files with 33 additions and 0 deletions
31
pkgs/servers/tidb/default.nix
Normal file
31
pkgs/servers/tidb/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "tidb";
|
||||
version = "6.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pingcap";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-U3RGQADiS3mNq+4U+Qn+LMYbX8vxkTmofnRc+yrAcIA=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-ljPFNjnmPaUx1PHtjlJh9ubKBDS3PgvbqTce9pi3GSc=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/pingcap/tidb/dumpling/cli.ReleaseVersion=${version}"
|
||||
"-X github.com/pingcap/tidb/util/versioninfo.TiDBEdition=Community"
|
||||
];
|
||||
|
||||
subPackages = [ "tidb-server" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An open-source, cloud-native, distributed, MySQL-Compatible database for elastic scale and real-time analytics";
|
||||
homepage = "https://pingcap.com";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ candyc1oud ];
|
||||
};
|
||||
}
|
|
@ -12285,6 +12285,8 @@ with pkgs;
|
|||
|
||||
tie = callPackage ../development/tools/misc/tie { };
|
||||
|
||||
tidb = callPackage ../servers/tidb { };
|
||||
|
||||
tikzit = libsForQt5.callPackage ../tools/typesetting/tikzit { };
|
||||
|
||||
tinc_pre = callPackage ../tools/networking/tinc/pre.nix { };
|
||||
|
|
Loading…
Reference in a new issue