gh-ost: init at 1.0.36

This commit is contained in:
Benjamin Smith 2017-06-01 13:57:39 -07:00
parent ad7bee4eb4
commit e57deab6d0
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,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;
};
});
}

View file

@ -999,6 +999,8 @@ with pkgs;
genromfs = callPackage ../tools/filesystems/genromfs { };
gh-ost = callPackage ../tools/misc/gh-ost { };
gist = callPackage ../tools/text/gist { };
glide = callPackage ../development/tools/glide { };