vgrep: init at 2.4.0
This commit is contained in:
parent
6748689238
commit
fd5f28afba
24
pkgs/tools/text/vgrep/default.nix
Normal file
24
pkgs/tools/text/vgrep/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "vgrep";
|
||||
version = "2.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vrothberg";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "109j04my2xib8m52a0337996a27nvfgzackpg20zs3nzn66dmvb7";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "User-friendly pager for grep/git-grep/ripgrep";
|
||||
homepage = "https://github.com/vrothberg/vgrep";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ zowoq ];
|
||||
};
|
||||
}
|
@ -7637,6 +7637,8 @@ in
|
||||
|
||||
verilog = callPackage ../applications/science/electronics/verilog {};
|
||||
|
||||
vgrep = callPackage ../tools/text/vgrep { };
|
||||
|
||||
vhd2vl = callPackage ../applications/science/electronics/vhd2vl { };
|
||||
|
||||
video2midi = callPackage ../tools/audio/video2midi {
|
||||
|
Loading…
Reference in New Issue
Block a user