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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
640 B
Nix
Raw Normal View History

2021-05-28 11:41:41 +00:00
{ lib
, stdenv
, fetchFromGitHub
, boost
, bzip2
, lz4
, pcre2
, xz
, zlib
}:
2020-07-25 01:16:21 +00:00
stdenv.mkDerivation rec {
pname = "ugrep";
2022-06-30 02:07:46 +00:00
version = "3.8.3";
2020-07-25 01:16:21 +00:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
2022-06-30 02:07:46 +00:00
sha256 = "sha256-p2x3WQIzM1FJBn9mvqfisjTLgjtkZouV/fr/waCiYw0=";
2020-07-25 01:16:21 +00:00
};
2021-05-28 11:41:41 +00:00
buildInputs = [
boost
bzip2
lz4
pcre2
xz
zlib
];
2020-07-25 01:16:21 +00:00
meta = with lib; {
2020-07-25 01:16:21 +00: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;
};
}