2021-01-16 04:20:00 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2014-08-03 14:26:06 +01:00
|
|
|
|
2021-01-16 04:20:00 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "peco";
|
2021-01-16 04:20:00 +00:00
|
|
|
version = "0.5.8";
|
2014-08-03 14:26:06 +01:00
|
|
|
|
2017-09-29 18:23:01 +01:00
|
|
|
subPackages = [ "cmd/peco" ];
|
2014-08-03 14:26:06 +01:00
|
|
|
|
2017-09-29 18:23:01 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "peco";
|
|
|
|
repo = "peco";
|
|
|
|
rev = "v${version}";
|
2021-01-16 04:20:00 +00:00
|
|
|
sha256 = "12xbqisk7bcy38fmjxcs069a0600gncbqzscqw6x37lgw6hlw52x";
|
2017-09-29 18:23:01 +01:00
|
|
|
};
|
2014-08-03 14:26:06 +01:00
|
|
|
|
2021-01-16 04:20:00 +00:00
|
|
|
vendorSha256 = "1p8pc50ql2vqnn0crx0y558i3m0d6vcdaj3995h3f0908pnk6x7q";
|
2014-08-03 14:26:06 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2014-08-03 14:26:06 +01:00
|
|
|
description = "Simplistic interactive filtering tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/peco/peco";
|
2021-01-16 04:20:00 +00:00
|
|
|
changelog = "https://github.com/peco/peco/blob/v${version}/Changes";
|
2014-08-03 14:26:06 +01:00
|
|
|
license = licenses.mit;
|
2018-07-12 21:03:06 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2014-08-03 14:26:06 +01:00
|
|
|
};
|
|
|
|
}
|