mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
32 lines
837 B
Nix
32 lines
837 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "tidb";
|
|
version = "6.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pingcap";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-u0Zl2SULBWrUu3V7VbbbkSMPoRijWQRYCMcqD4nC3Bw=";
|
|
};
|
|
|
|
vendorHash = "sha256-0fvvCOvRM3NbcUln5UfR/jTxVKZuQudgm6GivKaYm2c=";
|
|
|
|
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 ];
|
|
};
|
|
}
|