nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 18 lines 650 B view raw
1{ grafanaPlugin, lib }: 2 3grafanaPlugin { 4 pname = "grafana-github-datasource"; 5 version = "1.9.2"; 6 zipHash = { 7 x86_64-linux = "sha256-gh+vdZ8vkG/0OosqJSoh54Gi3JQGGm7YF0YgQCXr0LY="; 8 aarch64-linux = "sha256-OEDT5N/AyL3xocl1nesV9hCcfA/a8XBPBoaOH4UTo+M="; 9 x86_64-darwin = "sha256-5WrWvZriXjQIId52Y6THAVg7RfQFl1CT5qhKr/m0vVk="; 10 aarch64-darwin = "sha256-4IowlmyDGjxHBHvBD/eqZvouuOEvlad0nW8L0n8hf+g"; 11 }; 12 meta = with lib; { 13 description = "Allows GitHub API data to be visually represented in Grafana dashboards"; 14 license = licenses.asl20; 15 maintainers = with maintainers; [ nagisa ]; 16 platforms = platforms.unix; 17 }; 18}