nix-output-monitor: 2.1.3 -> 2.1.4

Changelog:

* bash: Add shell completion for `nom` command (thanks to @tomberek and @pdietl).
* zsh: Add shell completion for `nom` and `nom-shell` command (additionally to the existing completion for `nom-build`).
* Fix typo in README (thanks to @techie2000)

(cherry picked from commit 56d03d86ed)
This commit is contained in:
maralorn 2024-10-17 01:18:59 +02:00 committed by Bjørn Forsman
parent c4f1f1e386
commit c83fd23006
2 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@
ln -s nom "$out/bin/nom-build"
ln -s nom "$out/bin/nom-shell"
chmod a+x $out/bin/nom-build
installShellCompletion --zsh --name _nom-build completions/completion.zsh
installShellCompletion completions/*
'';
};
raw-pkg = haskellPackages.callPackage ./generated-package.nix {};

View File

@ -9,10 +9,10 @@
}:
mkDerivation {
pname = "nix-output-monitor";
version = "2.1.3";
version = "2.1.4";
src = fetchzip {
url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.3.tar.gz";
sha256 = "1xm40pp9lqj2hlwk3ds9zyjd4yqsis2a2ac5kn19z60glxvaijvx";
url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.4.tar.gz";
sha256 = "0ghpbq6a1cmh0xy42ipg8l1qi4pjdjn0df5am26587w396r81n5r";
};
isLibrary = true;
isExecutable = true;
@ -36,7 +36,7 @@ mkDerivation {
strict strict-types terminal-size text time transformers
typed-process word8
];
homepage = "https://github.com/maralorn/nix-output-monitor";
homepage = "https://code.maralorn.de/maralorn/nix-output-monitor";
description = "Processes output of Nix commands to show helpful and pretty information";
license = lib.licenses.agpl3Plus;
mainProgram = "nom";