ugrep: 3.12.1 -> 3.12.2
- Use rec-less, overlay-style overridable recursive attributes (courtesy: NixOS#119942)
This commit is contained in:
parent
2b356dae62
commit
2cc4331f03
@ -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;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
Loading…
Reference in New Issue
Block a user