about summary refs log tree commit diff
path: root/pkgs/tools/misc/gh-ost/default.nix
blob: 17893ef18ae63d09e117c3e407974aeb1088329a (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, buildGoPackage, fetchFromGitHub }:

let
  goPackagePath = "github.com/github/gh-ost";
  version = "1.0.49";
  sha256 = "0mncjhmv25wnhgjkn9gwkz2gzh0v6954w47ql7fs2iqr9al111dq";

in
buildGoPackage ({
    pname = "gh-ost";
    inherit 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;
    };
})