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

40 lines
640 B
Nix
Raw Normal View History

2021-05-28 14:41:41 +03:00
{ lib
, stdenv
, fetchFromGitHub
, boost
, bzip2
, lz4
, pcre2
, xz
, zlib
}:
2020-07-25 04:16:21 +03:00
stdenv.mkDerivation rec {
pname = "ugrep";
2021-10-28 16:54:03 +03:00
version = "3.3.8";
2020-07-25 04:16:21 +03:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
2021-10-28 16:54:03 +03:00
sha256 = "sha256-xVkInB2QmZjdcwzXQtmqKhuOjtkVDfY4fDB/wIqA3Jc=";
2020-07-25 04:16:21 +03:00
};
2021-05-28 14:41:41 +03:00
buildInputs = [
boost
bzip2
lz4
pcre2
xz
zlib
];
2020-07-25 04:16:21 +03:00
meta = with lib; {
2020-07-25 04:16:21 +03: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;
};
}