linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / vgrep / default.nix
bloba2ac4b51001a1bdc629740c2fbcac626b518354a
1 { lib, buildGoModule, fetchFromGitHub, go-md2man, installShellFiles }:
3 buildGoModule rec {
4   pname = "vgrep";
5   version = "2.5.1";
7   src = fetchFromGitHub {
8     owner = "vrothberg";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "06rnmg6ljj4f1g602wdp2wy9v0m1m0sj6jl6wywyjl8grjqc3vac";
12   };
14   vendorSha256 = null;
16   buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
18   nativeBuildInputs = [ go-md2man installShellFiles ];
20   postBuild = ''
21     sed -i '/SHELL= /d' Makefile
22     make docs
23     installManPage docs/*.[1-9]
24   '';
26   meta = with lib; {
27     description = "User-friendly pager for grep/git-grep/ripgrep";
28     homepage = "https://github.com/vrothberg/vgrep";
29     license = licenses.gpl3Only;
30     maintainers = with maintainers; [ zowoq ];
31   };