zenoh-backend-influxdb: init at 1.1.0

This commit is contained in:
Markus Kowalewski
2024-12-13 13:43:06 +01:00
parent edb690ec47
commit 6ed895d555
@@ -0,0 +1,30 @@
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "zenoh-backend-influxdb";
version = "1.1.0";
src = fetchFromGitHub {
owner = "eclipse-zenoh";
repo = "zenoh-backend-influxdb";
tag = version;
hash = "sha256-VQoJO+9DYDkIKTTqLy/i2uBeFPuXO2Y0NnYrJTa1tvc=";
};
cargoHash = "sha256-kaaOcRDqqZvVNfCuIKYJAPK+KLUE41/1R/Cih4cpVjw=";
meta = {
description = "Backend and Storages for zenoh using InfluxDB";
homepage = "https://github.com/eclipse-zenoh/zenoh-backend-influxdb";
license = with lib.licenses; [
epl20
asl20
];
maintainers = with lib.maintainers; [ markuskowa ];
platforms = lib.platforms.linux;
};
}