nix-output-monitor: 2.0.0.5 -> 2.0.0.6

* Small improvements in error reporting.
* Significant performance improvements.
This commit is contained in:
maralorn 2023-05-14 23:11:42 +02:00
parent 72b021051f
commit 4414a2d948
2 changed files with 12 additions and 15 deletions

View file

@ -20,15 +20,11 @@
chmod a+x $out/bin/nom-build chmod a+x $out/bin/nom-build
installShellCompletion --zsh --name _nom-build completions/completion.zsh installShellCompletion --zsh --name _nom-build completions/completion.zsh
''; '';
mainProgram = "nom";
}; };
nom-pkg = haskellPackages.callPackage ./generated-package.nix { }; raw-pkg = haskellPackages.callPackage ./generated-package.nix {};
nom-pkg-with-scope = nom-pkg.overrideScope (hfinal: hprev: {
hermes-json = hfinal.hermes-json_0_2_0_1;
});
in in
lib.pipe lib.pipe
nom-pkg-with-scope raw-pkg
[ [
(overrideCabal overrides) (overrideCabal overrides)
justStaticExecutables justStaticExecutables

View file

@ -26,7 +26,7 @@
relude, relude,
safe, safe,
stm, stm,
streamly, streamly-core,
strict, strict,
strict-types, strict-types,
terminal-size, terminal-size,
@ -38,10 +38,10 @@
}: }:
mkDerivation { mkDerivation {
pname = "nix-output-monitor"; pname = "nix-output-monitor";
version = "2.0.0.5"; version = "2.0.0.6";
src = fetchzip { src = fetchzip {
url = "https://github.com/maralorn/nix-output-monitor/archive/refs/tags/v2.0.0.5.tar.gz"; url = "https://github.com/maralorn/nix-output-monitor/archive/refs/tags/v2.0.0.6.tar.gz";
sha256 = "02xrbf2nr64yfny3idkjb1xbd97wl8m5viifrwjf4hi6ivs5bl18"; sha256 = "1adxg2bws7fqbmzfna5hr28fh8j10gvf57j6b0xbkhh4hgj4h9xd";
}; };
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
@ -66,7 +66,7 @@ mkDerivation {
relude relude
safe safe
stm stm
streamly streamly-core
strict strict
strict-types strict-types
terminal-size terminal-size
@ -96,7 +96,7 @@ mkDerivation {
relude relude
safe safe
stm stm
streamly streamly-core
strict strict
strict-types strict-types
terminal-size terminal-size
@ -129,7 +129,7 @@ mkDerivation {
relude relude
safe safe
stm stm
streamly streamly-core
strict strict
strict-types strict-types
terminal-size terminal-size
@ -142,5 +142,6 @@ mkDerivation {
homepage = "https://github.com/maralorn/nix-output-monitor"; homepage = "https://github.com/maralorn/nix-output-monitor";
description = "Parses output of nix-build to show additional information"; description = "Parses output of nix-build to show additional information";
license = lib.licenses.agpl3Plus; license = lib.licenses.agpl3Plus;
maintainers = with lib.maintainers; [maralorn]; mainProgram = "nom";
maintainers = [lib.maintainers.maralorn];
} }