ugrep: 3.1.7 -> 3.2.2

launchpad/nixpkgs/master
Fabian Affolter 3 years ago
parent 8917ffe723
commit 9bc3e666fa
  1. 24
      pkgs/tools/text/ugrep/default.nix

@ -1,17 +1,33 @@
{ lib, stdenv, fetchFromGitHub, boost, bzip2, lz4, pcre2, xz, zlib }:
{ lib
, stdenv
, fetchFromGitHub
, boost
, bzip2
, lz4
, pcre2
, xz
, zlib
}:
stdenv.mkDerivation rec {
pname = "ugrep";
version = "3.1.7";
version = "3.2.2";
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
sha256 = "sha256-nCpU4GBJ/4c/70hgVKfO1995XCyDRLVUeczsqnlkkFM=";
sha256 = "sha256-0Vc+ORHnSG9W4OaKWGs4tI5+e5TJNMbBNQ+3NZRz6Ug=";
};
buildInputs = [ boost bzip2 lz4 pcre2 xz zlib ];
buildInputs = [
boost
bzip2
lz4
pcre2
xz
zlib
];
meta = with lib; {
description = "Ultra fast grep with interactive query UI";

Loading…
Cancel
Save