2016-06-06 02:28:52 +02:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
|
2016-05-18 18:23:15 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "the_platinum_searcher-${version}";
|
2016-07-16 17:05:56 +02:00
|
|
|
version = "2.1.3";
|
|
|
|
rev = "v2.1.3";
|
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";
|
2016-07-16 17:05:56 +02:00
|
|
|
sha256 = "09pkdfh7fqn3x4l9zaw5wzk20k7nfdwry7br9vfy3vv3fwv61ynp";
|
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; {
|
|
|
|
homepage = https://github.com/monochromegane/the_platinum_searcher;
|
|
|
|
description = "A code search tool similar to ack and the_silver_searcher(ag).";
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|