python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / gh-ost / default.nix
blob5692ac812deea7fe5d6ae9879f7f0a54f29f6f58
1 { lib, buildGoPackage, fetchFromGitHub }:
3 buildGoPackage rec {
4   pname = "gh-ost";
5   version = "1.1.5";
7   src = fetchFromGitHub {
8     owner = "github";
9     repo = "gh-ost";
10     rev = "v${version}";
11     sha256 = "sha256-FTWKbZ/32cr/BUI+jtV0HYlWDFz+R2YQd6ZSzilDj64=";
12   };
14   goPackagePath = "github.com/github/gh-ost";
16   ldflags = [ "-s" "-w" "-X main.AppVersion=${version}" "-X main.BuildDescribe=${src.rev}" ];
18   meta = with lib; {
19     description = "Triggerless online schema migration solution for MySQL";
20     homepage = "https://github.com/github/gh-ost";
21     license = licenses.mit;
22   };