2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2016-05-18 18:23:15 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "the_platinum_searcher";
|
2017-04-30 21:51:58 +02:00
|
|
|
version = "2.1.5";
|
|
|
|
rev = "v${version}";
|
2016-05-18 18:23:15 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/monochromegane/the_platinum_searcher";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit rev;
|
|
|
|
owner = "monochromegane";
|
|
|
|
repo = "the_platinum_searcher";
|
2017-04-30 21:51:58 +02:00
|
|
|
sha256 = "1y7kl3954dimx9hp2bf1vjg1h52hj1v6cm4f5nhrqzwrawp0b6q0";
|
2016-05-18 18:23:15 +02:00
|
|
|
};
|
|
|
|
|
2016-09-10 12:04:13 +02:00
|
|
|
goDeps = ./deps.nix;
|
2016-05-18 18:23:15 +02:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/monochromegane/the_platinum_searcher";
|
2016-05-18 18:23:15 +02:00
|
|
|
description = "A code search tool similar to ack and the_silver_searcher(ag).";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|