From 81a288124e73669ffb62f015e011a55759c912bc Mon Sep 17 00:00:00 2001 From: Casey Ransom Date: Wed, 13 Feb 2019 14:23:51 -0500 Subject: [PATCH] gh-ost: 1.0.36 -> 1.0.47 Also fixes a weirdness with the derivation where to use it, you needed to specify `gh-ost.gh-ost`. There's nothing special about the extra output. --- pkgs/tools/misc/gh-ost/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/gh-ost/default.nix b/pkgs/tools/misc/gh-ost/default.nix index a5871d2bc33e..709d30050910 100644 --- a/pkgs/tools/misc/gh-ost/default.nix +++ b/pkgs/tools/misc/gh-ost/default.nix @@ -2,11 +2,11 @@ let goPackagePath = "github.com/github/gh-ost"; - version = "1.0.36"; - sha256 = "0qa7k50bf87bx7sr6iwqri8l49f811gs0bj3ivslxfibcs1z5d4h"; + version = "1.0.47"; + sha256 = "0yyhkqis4j2cl6w2drrjxdy5j8x9zp4j89gsny6w4ql8gm5qgvvk"; -in { - gh-ost = buildGoPackage ({ +in +buildGoPackage ({ name = "gh-ost-${version}"; inherit goPackagePath; @@ -23,5 +23,5 @@ in { license = licenses.mit; platforms = platforms.linux; }; - }); -} +}) +