35 lines
947 B
Nix
35 lines
947 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jsonwatch";
|
|
version = "0.7.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dbohdan";
|
|
repo = "jsonwatch";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-WzQ793dLb8OujNpEq7UXIgJM+lz0WZEVlbKmwM58klU=";
|
|
};
|
|
|
|
cargoHash = "sha256-76Vvs3OaxYDZE39d9h3T8HhYQfHhY5D17PgQxcPrMyc=";
|
|
|
|
meta = with lib; {
|
|
description = "Like watch -d but for JSON";
|
|
longDescription = ''
|
|
jsonwatch is a command line utility with which you can track
|
|
changes in JSON data delivered by a shell command or a web
|
|
(HTTP/HTTPS) API. jsonwatch requests data from the designated
|
|
source repeatedly at a set interval and displays the
|
|
differences when the data changes.
|
|
'';
|
|
homepage = "https://github.com/dbohdan/jsonwatch";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "jsonwatch";
|
|
};
|
|
}
|