nixpkgs/pkgs/tools/text/platinum-searcher/default.nix

25 lines
646 B
Nix
Raw Normal View History

{ stdenv, buildGoPackage, fetchFromGitHub }:
2016-05-18 16:23:15 +00:00
buildGoPackage rec {
pname = "the_platinum_searcher";
2017-04-30 19:51:58 +00:00
version = "2.1.5";
rev = "v${version}";
2016-05-18 16:23:15 +00:00
goPackagePath = "github.com/monochromegane/the_platinum_searcher";
src = fetchFromGitHub {
inherit rev;
owner = "monochromegane";
repo = "the_platinum_searcher";
2017-04-30 19:51:58 +00:00
sha256 = "1y7kl3954dimx9hp2bf1vjg1h52hj1v6cm4f5nhrqzwrawp0b6q0";
2016-05-18 16:23:15 +00:00
};
goDeps = ./deps.nix;
2016-05-18 16:23:15 +00:00
meta = with stdenv.lib; {
homepage = "https://github.com/monochromegane/the_platinum_searcher";
2016-05-18 16:23:15 +00:00
description = "A code search tool similar to ack and the_silver_searcher(ag).";
license = licenses.mit;
};
}