From 6ed895d5553ebdf1696244bee9b44664ec2cd710 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 11 Dec 2024 22:29:58 +0100 Subject: [PATCH] zenoh-backend-influxdb: init at 1.1.0 --- .../ze/zenoh-backend-influxdb/package.nix | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pkgs/by-name/ze/zenoh-backend-influxdb/package.nix diff --git a/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix b/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix new file mode 100644 index 000000000000..0da5f92644e2 --- /dev/null +++ b/pkgs/by-name/ze/zenoh-backend-influxdb/package.nix @@ -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; + }; +}