mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
a79359b974
Notably this contains a dependency update that fixes the config file search path.
30 lines
750 B
Nix
30 lines
750 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitLab,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "watchlog";
|
|
version = "1.197.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "kevincox";
|
|
repo = "watchlog";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-6/SF+bsf4KAVdbda8AmeNxZiOZsyU2MfGmR4b+geETE=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-8lBHsWGzu0h+hHsFK4DuPz6cTsgOT3JZFbsecJskdok=";
|
|
|
|
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;
|
|
};
|
|
}
|