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

24 lines
609 B
Nix
Raw Normal View History

2020-07-25 01:16:21 +00:00
{ stdenv, fetchFromGitHub, boost, bzip2, lz4, pcre2, xz, zlib }:
stdenv.mkDerivation rec {
pname = "ugrep";
2020-12-08 08:27:12 +00:00
version = "3.0.6";
2020-07-25 01:16:21 +00:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
2020-12-08 08:27:12 +00:00
sha256 = "1s8glpk7li45rcf2xi21qv65dldl8sd3mmalf54pbzfcjri5fwz6";
2020-07-25 01:16:21 +00:00
};
buildInputs = [ boost bzip2 lz4 pcre2 xz zlib ];
meta = with stdenv.lib; {
description = "Ultra fast grep with interactive query UI";
homepage = "https://github.com/Genivia/ugrep";
maintainers = with maintainers; [ numkem ];
license = licenses.bsd3;
platforms = platforms.all;
};
}