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
19 lines
650 B
Nix
19 lines
650 B
Nix
{ grafanaPlugin, lib }:
|
|
|
|
grafanaPlugin {
|
|
pname = "grafana-github-datasource";
|
|
version = "1.9.2";
|
|
zipHash = {
|
|
x86_64-linux = "sha256-gh+vdZ8vkG/0OosqJSoh54Gi3JQGGm7YF0YgQCXr0LY=";
|
|
aarch64-linux = "sha256-OEDT5N/AyL3xocl1nesV9hCcfA/a8XBPBoaOH4UTo+M=";
|
|
x86_64-darwin = "sha256-5WrWvZriXjQIId52Y6THAVg7RfQFl1CT5qhKr/m0vVk=";
|
|
aarch64-darwin = "sha256-4IowlmyDGjxHBHvBD/eqZvouuOEvlad0nW8L0n8hf+g";
|
|
};
|
|
meta = with lib; {
|
|
description = "Allows GitHub API data to be visually represented in Grafana dashboards";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nagisa ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|