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

24 lines
606 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, boost, bzip2, lz4, pcre2, xz, zlib }:
2020-07-25 02:16:21 +01:00
stdenv.mkDerivation rec {
pname = "ugrep";
2021-02-23 16:51:02 +00:00
version = "3.1.7";
2020-07-25 02:16:21 +01:00
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
2021-02-23 16:51:02 +00:00
sha256 = "sha256-nCpU4GBJ/4c/70hgVKfO1995XCyDRLVUeczsqnlkkFM=";
2020-07-25 02:16:21 +01:00
};
buildInputs = [ boost bzip2 lz4 pcre2 xz zlib ];
meta = with lib; {
2020-07-25 02:16:21 +01: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;
};
}