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)
This commit is contained in:
parent
dbd4d21583
commit
56d03d86ed
@ -18,7 +18,7 @@
|
|||||||
ln -s nom "$out/bin/nom-build"
|
ln -s nom "$out/bin/nom-build"
|
||||||
ln -s nom "$out/bin/nom-shell"
|
ln -s nom "$out/bin/nom-shell"
|
||||||
chmod a+x $out/bin/nom-build
|
chmod a+x $out/bin/nom-build
|
||||||
installShellCompletion --zsh --name _nom-build completions/completion.zsh
|
installShellCompletion completions/*
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
raw-pkg = haskellPackages.callPackage ./generated-package.nix {};
|
raw-pkg = haskellPackages.callPackage ./generated-package.nix {};
|
||||||
|
@ -9,10 +9,10 @@
|
|||||||
}:
|
}:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "nix-output-monitor";
|
pname = "nix-output-monitor";
|
||||||
version = "2.1.3";
|
version = "2.1.4";
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.3.tar.gz";
|
url = "https://code.maralorn.de/maralorn/nix-output-monitor/archive/v2.1.4.tar.gz";
|
||||||
sha256 = "1xm40pp9lqj2hlwk3ds9zyjd4yqsis2a2ac5kn19z60glxvaijvx";
|
sha256 = "0ghpbq6a1cmh0xy42ipg8l1qi4pjdjn0df5am26587w396r81n5r";
|
||||||
};
|
};
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
@ -36,7 +36,7 @@ mkDerivation {
|
|||||||
strict strict-types terminal-size text time transformers
|
strict strict-types terminal-size text time transformers
|
||||||
typed-process word8
|
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";
|
description = "Processes output of Nix commands to show helpful and pretty information";
|
||||||
license = lib.licenses.agpl3Plus;
|
license = lib.licenses.agpl3Plus;
|
||||||
mainProgram = "nom";
|
mainProgram = "nom";
|
||||||
|
Loading…
Reference in New Issue
Block a user