2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-06-01 21:57:39 +01:00
|
|
|
|
2020-10-04 14:49:00 +01:00
|
|
|
buildGoPackage rec {
|
|
|
|
pname = "gh-ost";
|
|
|
|
version = "1.1.0";
|
2017-06-01 21:57:39 +01:00
|
|
|
|
2020-10-04 14:49:00 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "github";
|
|
|
|
repo = "gh-ost";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0laj5nmf10qn01mqn0flipmhankgvrcfbdl3bc76wa14qkkg722m";
|
|
|
|
};
|
2017-06-01 21:57:39 +01:00
|
|
|
|
2020-10-04 14:49:00 +01:00
|
|
|
goPackagePath = "github.com/github/gh-ost";
|
2017-06-01 21:57:39 +01:00
|
|
|
|
2020-10-04 14:49:00 +01:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.AppVersion=${version} -X main.BuildDescribe=${src.rev}" ];
|
2019-02-13 19:23:51 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-04 14:49:00 +01:00
|
|
|
description = "Triggerless online schema migration solution for MySQL";
|
|
|
|
homepage = "https://github.com/github/gh-ost";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|