Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
770 B
Nix
31 lines
770 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitLab,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "watchlog";
|
|
version = "1.250.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "kevincox";
|
|
repo = "watchlog";
|
|
rev = "v${version}";
|
|
hash = "sha256-a8x1fEYuHZu2Z/CE835HEqkNr7Mtbdtuq1vDRKfEl5U=";
|
|
};
|
|
|
|
cargoHash = "sha256-b+xuMUt9btrfKLUluxtSFXdFKtOHmKVV0m1fPM5cNRA=";
|
|
|
|
meta = {
|
|
description = "Easier monitoring of live logs";
|
|
homepage = "https://gitlab.com/kevincox/watchlog";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ kevincox ];
|
|
|
|
# Dependency only supports Linux + Windows: https://github.com/mentaljam/standard_paths/tree/master/src
|
|
platforms = with lib.platforms; linux ++ windows;
|
|
mainProgram = "wl";
|
|
};
|
|
}
|