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

40 lines
639 B
Nix
Raw Normal View History

2021-05-28 13:41:41 +02:00
{ lib
, stdenv
, fetchFromGitHub
, boost
, bzip2
, lz4
, pcre2
, xz
, zlib
}:
2020-07-25 03:16:21 +02:00
stdenv.mkDerivation rec {
pname = "ugrep";
version = "3.3";
2020-07-25 03:16:21 +02:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
sha256 = "0qk8rzsll69pf220m6n41giyk3faqvwagml7i2xwgp7pcax607nl";
2020-07-25 03:16:21 +02:00
};
2021-05-28 13:41:41 +02:00
buildInputs = [
boost
bzip2
lz4
pcre2
xz
zlib
];
2020-07-25 03:16:21 +02:00
meta = with lib; {
2020-07-25 03:16:21 +02:00
description = "Ultra fast grep with interactive query UI";
homepage = "https://github.com/Genivia/ugrep";
maintainers = with maintainers; [ numkem ];
license = licenses.bsd3;
platforms = platforms.all;
};
}