about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/grafana/plugins/grafana-plugin.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/monitoring/grafana/plugins/grafana-plugin.nix')
-rw-r--r--nixpkgs/pkgs/servers/monitoring/grafana/plugins/grafana-plugin.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/monitoring/grafana/plugins/grafana-plugin.nix b/nixpkgs/pkgs/servers/monitoring/grafana/plugins/grafana-plugin.nix
new file mode 100644
index 000000000000..57af5d265452
--- /dev/null
+++ b/nixpkgs/pkgs/servers/monitoring/grafana/plugins/grafana-plugin.nix
@@ -0,0 +1,41 @@
+{ stdenvNoCC, fetchurl, unzip, lib }:
+
+{ pname, version, zipHash, meta ? {}, passthru ? {}, ... }@args:
+let plat = stdenvNoCC.hostPlatform.system; in stdenvNoCC.mkDerivation ({
+  inherit pname version;
+
+  src = if lib.isAttrs zipHash then
+    fetchurl {
+      name = "${pname}-${version}-${plat}.zip";
+      hash = zipHash.${plat} or (throw "Unsupported system: ${plat}");
+      url = "https://grafana.com/api/plugins/${pname}/versions/${version}/download" + {
+        x86_64-linux = "?os=linux&arch=amd64";
+        aarch64-linux = "?os=linux&arch=arm64";
+        x86_64-darwin = "?os=darwin&arch=amd64";
+        aarch64-darwin = "?os=darwin&arch=arm64";
+      }.${plat} or (throw "Unsupported system: ${plat}");
+    }
+  else
+    fetchurl {
+      name = "${pname}-${version}.zip";
+      hash = zipHash;
+      url = "https://grafana.com/api/plugins/${pname}/versions/${version}/download";
+    }
+  ;
+
+  nativeBuildInputs = [ unzip ];
+
+  installPhase = ''
+    cp -R "." "$out"
+    chmod -R a-w "$out"
+    chmod u+w "$out"
+  '';
+
+  passthru = {
+    updateScript = [ ./update-grafana-plugin.sh pname ];
+  } // passthru;
+
+  meta = {
+    homepage = "https://grafana.com/grafana/plugins/${pname}";
+  } // meta;
+} // (builtins.removeAttrs args [ "zipHash" "pname" "version" "sha256" "meta" ]))