2023-09-29 03:15:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, fetchpatch }:
|
2016-05-18 16:23:15 +00:00
|
|
|
|
2023-09-29 03:15:54 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "the_platinum_searcher";
|
2023-10-12 17:00:54 +00:00
|
|
|
version = "2.2.0";
|
2016-05-18 16:23:15 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "monochromegane";
|
|
|
|
repo = "the_platinum_searcher";
|
2023-09-29 03:15:54 +00:00
|
|
|
rev = "v${version}";
|
2023-10-12 17:00:54 +00:00
|
|
|
hash = "sha256-FNHlALFwMbajaHWOehdSFeQmvZSuCZLdqGqLZ7DF+pI=";
|
2016-05-18 16:23:15 +00:00
|
|
|
};
|
|
|
|
|
2023-09-29 03:15:54 +00:00
|
|
|
vendorHash = "sha256-GIjPgu0e+duN5MeWcRaF5xUFCkqe2aZJCwGbLUMko08=";
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Add Go Modules support. See https://github.com/monochromegane/the_platinum_searcher/pull/217.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/monochromegane/the_platinum_searcher/pull/217/commits/69064d11c57d5fd5f66ddd95f0e789786183d3c6.patch";
|
|
|
|
hash = "sha256-qQ7kZYb2MWSUV6T1frIPT9nMfb20SI7lbG8YhqyQEi8=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" ];
|
2016-05-18 16:23:15 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/monochromegane/the_platinum_searcher";
|
2020-10-11 05:55:05 +00:00
|
|
|
description = "Code search tool similar to ack and the_silver_searcher(ag)";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "pt";
|
2016-05-18 16:23:15 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|