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 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";
2023-04-09 10:39:24 +02:00
version = "3.11.2";
2020-07-25 03:16:21 +02:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
2023-04-09 10:39:24 +02:00
hash = "sha256-NDH2OEweIU0/JHfkq0md6cll2uwCTLkVmJcmF337DUw=";
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";
2022-12-31 12:57:20 +01:00
changelog = "https://github.com/Genivia/ugrep/releases/tag/v${version}";
2020-07-25 03:16:21 +02:00
maintainers = with maintainers; [ numkem ];
license = licenses.bsd3;
platforms = platforms.all;
};
}