2016-06-25 19:57:11 +02:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "sift-${version}";
|
|
|
|
version = "0.8.0";
|
|
|
|
rev = "v${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/svent/sift";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "svent";
|
|
|
|
repo = "sift";
|
|
|
|
sha256 = "1nb042k420xr6000ipwhqn41vg8jfp6ghq4z7y1sjnndkrhclzm1";
|
|
|
|
};
|
|
|
|
|
2016-09-10 12:04:13 +02:00
|
|
|
goDeps = ./deps.nix;
|
2016-06-25 19:57:11 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "sift is a fast and powerful alternative to grep";
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://sift-tool.org;
|
2016-06-25 19:57:11 +02:00
|
|
|
maintainers = [ maintainers.carlsverre ];
|
|
|
|
license = licenses.gpl3;
|
2017-05-17 02:56:35 +02:00
|
|
|
platforms = platforms.all;
|
2016-06-25 19:57:11 +02:00
|
|
|
};
|
|
|
|
}
|