Fix forge references

This commit is contained in:
maralorn 2024-07-28 22:04:40 +02:00
parent da1418e7e4
commit 8a92e964ea
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -31,7 +31,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";

View File

@ -156,7 +156,7 @@ processStateUpdater ::
StateT (ProcessState a) m ([NOMError], ByteString, Bool)
processStateUpdater config input = do
old_state <- get
updater_result <- updateState input (old_state.updaterState)
updater_result <- updateState input old_state.updaterState
put
MkProcessState
{ updaterState = updater_result.newState
@ -212,5 +212,5 @@ helpText =
, " --json Parse input as nix internal-json"
, ""
, "Please see the readme for more details:"
, "https://git.maralorn.de/nix-output-monitor/about/"
, "https://code.maralorn.de/maralorn/nix-output-monitor#readme"
]

View File

@ -7,7 +7,7 @@ synopsis:
description:
A tool which consumes Nixs output to enrich your terminal output with useful information.
homepage: https://github.com/maralorn/nix-output-monitor
homepage: https://code.maralorn.de/maralorn/nix-output-monitor
bug-reports: https://github.com/maralorn/nix-output-monitor/issues
license: AGPL-3.0-or-later
license-file: LICENSE
@ -32,7 +32,7 @@ category:
source-repository head
type: git
location: https://git.maralorn.de/nix-output-monitor
location: https://code.maralorn.de/maralorn/nix-output-monitor
common common-config
default-extensions: