zenoh: 1.2.0 -> 1.2.1 (#382334)

This commit is contained in:
Nick Cao
2025-02-15 11:07:51 -05:00
committed by GitHub
7 changed files with 11 additions and 11 deletions
@@ -10,7 +10,7 @@
rustPlatform.buildRustPackage rec {
pname = "zenoh-backend-filesystem";
version = "1.2.1";
version = "1.2.1"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "eclipse-zenoh";
@@ -6,7 +6,7 @@
rustPlatform.buildRustPackage rec {
pname = "zenoh-backend-influxdb";
version = "1.2.1";
version = "1.2.1"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "eclipse-zenoh";
@@ -10,7 +10,7 @@
rustPlatform.buildRustPackage rec {
pname = "zenoh-backend-rocksdb";
version = "1.2.1";
version = "1.2.1"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "eclipse-zenoh";
@@ -6,7 +6,7 @@
rustPlatform.buildRustPackage rec {
pname = "zenoh-plugin-mqtt";
version = "1.2.1";
version = "1.2.1"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "eclipse-zenoh";
@@ -6,7 +6,7 @@
rustPlatform.buildRustPackage rec {
pname = "zenoh-plugin-webserver";
version = "1.2.1";
version = "1.2.1"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "eclipse-zenoh";
+3 -3
View File
@@ -8,17 +8,17 @@
}:
rustPlatform.buildRustPackage rec {
pname = "zenoh";
version = "1.2.0";
version = "1.2.1"; # nixpkgs-update: no auto update
src = fetchFromGitHub {
owner = "eclipse-zenoh";
repo = "zenoh";
rev = version;
hash = "sha256-X/jUANTwuOHIA+m8LB4UuJDJ0PwZuMQHtSdgSPiPYNI=";
hash = "sha256-iwimXL1jcBLwaek9tmvGuow56+LMCyA5qkvHsn72m+c=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-hCon4ydLLwvdglVfNn+eWMbDaTpcPZxzLWINPULYZwI=";
cargoHash = "sha256-UF5tZyAYluSZ+jR03W7h0azAGiNw48Hum1Si0G5lTqA=";
cargoBuildFlags = [
"--workspace"
@@ -11,19 +11,19 @@
buildPythonPackage rec {
pname = "zenoh";
version = "1.2.0";
version = "1.2.1"; # nixpkgs-update: no auto update
pyproject = true;
src = fetchFromGitHub {
owner = "eclipse-zenoh";
repo = "zenoh-python";
rev = version;
hash = "sha256-N82KcLMYTOzkeFR6NLNR/g4MDjXk2aZRaAVMggXKwf0=";
hash = "sha256-AIsIjMcT9g0mTAgxOL/shBEjpeuOm/7Wn4EOSyYbShE=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src pname version;
hash = "sha256-5JdqANf5roFY3J+iPxg+WhmAyTWARhgav+/jt7rttqg=";
hash = "sha256-Y8fg/vFL7kLoARpp0BmDpQva9zNEEOWOHQk3GjeAoLk=";
};
build-system = [