nixpkgs/pkgs/by-name/pl/platinum-searcher/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1002 B
Nix
Raw Normal View History

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 {
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
meta = with lib; {
homepage = "https://github.com/monochromegane/the_platinum_searcher";
description = "Code search tool similar to ack and the_silver_searcher(ag)";
mainProgram = "pt";
2016-05-18 16:23:15 +00:00
license = licenses.mit;
};
}