about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCasey Ransom <casey@dailykos.com>2019-02-13 14:23:51 -0500
committerCasey Ransom <casey@dailykos.com>2019-02-13 14:29:14 -0500
commit81a288124e73669ffb62f015e011a55759c912bc (patch)
tree5ac3d06ad452a33667a398a4972f6feb50f6ccf9
parent7cc1f8e032b4e532cf4f9f407bad344918e24b3f (diff)
downloadnixlib-81a288124e73669ffb62f015e011a55759c912bc.tar
nixlib-81a288124e73669ffb62f015e011a55759c912bc.tar.gz
nixlib-81a288124e73669ffb62f015e011a55759c912bc.tar.bz2
nixlib-81a288124e73669ffb62f015e011a55759c912bc.tar.lz
nixlib-81a288124e73669ffb62f015e011a55759c912bc.tar.xz
nixlib-81a288124e73669ffb62f015e011a55759c912bc.tar.zst
nixlib-81a288124e73669ffb62f015e011a55759c912bc.zip
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.
-rw-r--r--pkgs/tools/misc/gh-ost/default.nix12
1 files 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;
     };
-  });
-}
+})
+