depot/rust/matrix2mqtt/package.nix

22 lines
436 B
Nix
Raw Normal View History

2024-10-20 22:20:48 +00:00
# SPDX-FileCopyrightText: 2024 Luke Granger-Brown <depot@lukegb.com>
#
# SPDX-License-Identifier: Apache-2.0
{ lib, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "matrix2mqtt";
version = "unstable";
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./Cargo.toml
./Cargo.lock
./src
];
};
cargoHash = "sha256-0R6hN5cNlj8+UzZ9oM4f74UGGCS1AKlDgHaQyKq/y0Q=";
}