nixpkgs-suyu/pkgs/tools/text/vgrep/default.nix

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

33 lines
779 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, go-md2man, installShellFiles }:
2020-09-06 11:38:09 +02:00
buildGoModule rec {
pname = "vgrep";
2022-01-26 20:54:19 +01:00
version = "2.6.0";
2020-09-06 11:38:09 +02:00
src = fetchFromGitHub {
owner = "vrothberg";
repo = pname;
rev = "v${version}";
2022-01-26 20:54:19 +01:00
sha256 = "sha256-RLyEOvNhb1oXPYYxVZKc+xN2uCgUaWMxh8dPEOUfAFA=";
2020-09-06 11:38:09 +02:00
};
vendorSha256 = null;
2021-07-31 15:44:19 +02:00
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
2020-09-06 11:38:09 +02:00
nativeBuildInputs = [ go-md2man installShellFiles ];
postBuild = ''
sed -i '/SHELL= /d' Makefile
make docs
installManPage docs/*.[1-9]
'';
2020-09-06 11:38:09 +02:00
meta = with lib; {
description = "User-friendly pager for grep/git-grep/ripgrep";
homepage = "https://github.com/vrothberg/vgrep";
license = licenses.gpl3Only;
2021-06-18 10:55:07 +02:00
maintainers = with maintainers; [ SuperSandro2000 ];
2020-09-06 11:38:09 +02:00
};
}