This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
14 lines
398 B
Nix
14 lines
398 B
Nix
{ grafanaPlugin, lib }:
|
|
|
|
grafanaPlugin {
|
|
pname = "bsull-console-datasource";
|
|
version = "1.0.1";
|
|
zipHash = "sha256-V6D/VIdwwQvG21nVMXD/xF86Uy8WRecL2RjyDTZr1wQ=";
|
|
meta = {
|
|
description = "Grafana data source which can connect to the Tokio console subscriber";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ nagisa ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|