nixpkgs/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 10:38:09 +01:00
buildGoModule rec {
pname = "vgrep";
2022-08-29 02:53:22 +01:00
version = "2.6.1";
2020-09-06 10:38:09 +01:00
src = fetchFromGitHub {
owner = "vrothberg";
repo = pname;
rev = "v${version}";
2022-08-29 02:53:22 +01:00
sha256 = "sha256-8xLyk1iid3xDCAuZwz1oXsEyboLaxvzm1BEyA2snQt4=";
2020-09-06 10:38:09 +01:00
};
vendorSha256 = null;
2021-07-31 14:44:19 +01:00
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
2020-09-06 10:38:09 +01:00
nativeBuildInputs = [ go-md2man installShellFiles ];
postBuild = ''
sed -i '/SHELL= /d' Makefile
make docs
installManPage docs/*.[1-9]
'';
2020-09-06 10:38:09 +01: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 09:55:07 +01:00
maintainers = with maintainers; [ SuperSandro2000 ];
2020-09-06 10:38:09 +01:00
};
}