about summary refs log tree commit diff
path: root/pkgs/tools/misc/gh-ost/default.nix
blob: 24841a2bac792cf0ec737ec98dfa80eab0a5b2bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

let
  goPackagePath = "github.com/github/gh-ost";
  version = "1.0.36";
  sha256 = "0qa7k50bf87bx7sr6iwqri8l49f811gs0bj3ivslxfibcs1z5d4h";

in {
  gh-ost = buildGoPackage ({
    name = "gh-ost-${version}";
    inherit goPackagePath;

    src = fetchFromGitHub {
      owner = "github";
      repo  = "gh-ost";
      rev   = "v${version}";
      inherit sha256;
    };

    meta = with stdenv.lib; {
      description = "Triggerless online schema migration solution for MySQL";
      homepage = https://github.com/github/gh-ost;
      license = licenses.mit;
      platforms = platforms.linux;
    };
  });
}