linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / text / ugrep / default.nix
blob5806723a043e751343ff2249dc0289f3da4f497f
1 { lib, stdenv, fetchFromGitHub, boost, bzip2, lz4, pcre2, xz, zlib }:
3 stdenv.mkDerivation rec {
4   pname = "ugrep";
5   version = "3.1.7";
7   src = fetchFromGitHub {
8     owner = "Genivia";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-nCpU4GBJ/4c/70hgVKfO1995XCyDRLVUeczsqnlkkFM=";
12   };
14   buildInputs = [ boost bzip2 lz4 pcre2 xz zlib ];
16   meta = with lib; {
17     description = "Ultra fast grep with interactive query UI";
18     homepage = "https://github.com/Genivia/ugrep";
19     maintainers = with maintainers; [ numkem ];
20     license = licenses.bsd3;
21     platforms = platforms.all;
22   };