2018-07-20 17:44:44 -07:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-25 10:57:11 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "sift";
|
2018-02-14 13:34:31 -08:00
|
|
|
version = "0.9.0";
|
2016-06-25 10:57:11 -07:00
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/svent/sift";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "svent";
|
|
|
|
repo = "sift";
|
2018-02-14 13:34:31 -08:00
|
|
|
sha256 = "0bgy0jf84z1c3msvb60ffj4axayfchdkf0xjnsbx9kad1v10g7i1";
|
2016-06-25 10:57:11 -07:00
|
|
|
};
|
|
|
|
|
2016-09-10 03:04:13 -07:00
|
|
|
goDeps = ./deps.nix;
|
2016-06-25 10:57:11 -07:00
|
|
|
|
|
|
|
meta = with lib; {
|
2020-10-25 21:08:40 -07:00
|
|
|
description = "A fast and powerful alternative to grep";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://sift-tool.org";
|
2016-06-25 10:57:11 -07:00
|
|
|
maintainers = [ maintainers.carlsverre ];
|
|
|
|
license = licenses.gpl3;
|
|
|
|
};
|
|
|
|
}
|