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

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

41 lines
716 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";
2023-06-18 05:23:36 +00:00
version = "3.12.1";
2020-07-25 01:16:21 +00:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
2023-06-18 05:23:36 +00:00
hash = "sha256-kpLzv8nHye1XStHABmZHXQ2Gn+g06BFeN3u47bkKbzU=";
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";
2022-12-31 11:57:20 +00:00
changelog = "https://github.com/Genivia/ugrep/releases/tag/v${version}";
2020-07-25 01:16:21 +00:00
maintainers = with maintainers; [ numkem ];
license = licenses.bsd3;
platforms = platforms.all;
};
}