about summary refs log tree commit diff
path: root/pkgs/tools/text/peco
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2018-07-12 22:03:06 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2018-07-12 22:03:06 +0200
commite0f54907aea00f819414c5339770242a56d44b20 (patch)
tree0804e6fcf07c63965a9a699c8092f9442c1ea2be /pkgs/tools/text/peco
parente137f80e62f591ce4a1ecf400910acbd06acfea9 (diff)
downloadnixlib-e0f54907aea00f819414c5339770242a56d44b20.tar
nixlib-e0f54907aea00f819414c5339770242a56d44b20.tar.gz
nixlib-e0f54907aea00f819414c5339770242a56d44b20.tar.bz2
nixlib-e0f54907aea00f819414c5339770242a56d44b20.tar.lz
nixlib-e0f54907aea00f819414c5339770242a56d44b20.tar.xz
nixlib-e0f54907aea00f819414c5339770242a56d44b20.tar.zst
nixlib-e0f54907aea00f819414c5339770242a56d44b20.zip
peco: 0.5.2 -> 0.5.3
Diffstat (limited to 'pkgs/tools/text/peco')
-rw-r--r--pkgs/tools/text/peco/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/text/peco/default.nix b/pkgs/tools/text/peco/default.nix
index 7b87fd1e492c..b51f811644d1 100644
--- a/pkgs/tools/text/peco/default.nix
+++ b/pkgs/tools/text/peco/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   name = "peco-${version}";
-  version = "0.5.2";
+  version = "0.5.3";
 
   goPackagePath = "github.com/peco/peco";
   subPackages = [ "cmd/peco" ];
@@ -11,7 +11,7 @@ buildGoPackage rec {
     owner = "peco";
     repo = "peco";
     rev = "v${version}";
-    sha256 = "0cgfwbnz4jp2nvmqf2i03xf69by8g0xgd3k5k9aj46y9hps1ka92";
+    sha256 = "1m3s1jrrhqccgg3frfnq6iprwwi97j13wksckpcyrg51z6y5q041";
   };
 
   goDeps = ./deps.nix;
@@ -23,5 +23,6 @@ buildGoPackage rec {
     # peco should work on Windows or other POSIX platforms, but the go package
     # declares only linux and darwin.
     platforms = platforms.linux ++ platforms.darwin;
+    maintainers = with maintainers; [ pSub ];
   };
 }