1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

ugrep: 3.12.1 -> 3.12.2

- Use rec-less, overlay-style overridable recursive attributes (courtesy: NixOS#119942)
This commit is contained in:
Ashish SHUKLA 2023-07-10 08:44:27 +02:00
parent 2b356dae62
commit 2cc4331f03
No known key found for this signature in database

View file

@ -9,15 +9,15 @@
, zlib
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "ugrep";
version = "3.12.1";
version = "3.12.2";
src = fetchFromGitHub {
owner = "Genivia";
repo = pname;
rev = "v${version}";
hash = "sha256-kpLzv8nHye1XStHABmZHXQ2Gn+g06BFeN3u47bkKbzU=";
repo = "ugrep";
rev = "v${finalAttrs.version}";
hash = "sha256-h5BMqv8gv+e7pBSyQva5lmH83lxSnu86BF3KwziFdps=";
};
buildInputs = [
@ -32,9 +32,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Ultra fast grep with interactive query UI";
homepage = "https://github.com/Genivia/ugrep";
changelog = "https://github.com/Genivia/ugrep/releases/tag/v${version}";
changelog = "https://github.com/Genivia/ugrep/releases/tag/v${finalAttrs.version}";
maintainers = with maintainers; [ numkem ];
license = licenses.bsd3;
platforms = platforms.all;
};
}
})