tbtools: init at v0.5.0 (#374988)

Signed-off-by: Felix Singer <felixsinger@posteo.net>
This commit is contained in:
Felix Singer
2025-01-25 18:19:05 +00:00
committed by GitHub
parent 0624adcd5a
commit 1eb49447c5
+46
View File
@@ -0,0 +1,46 @@
{
fetchFromGitHub,
lib,
nix-update-script,
pkg-config,
rustPlatform,
stdenv,
systemd,
}:
rustPlatform.buildRustPackage rec {
pname = "tbtools";
version = "0.5.0";
src = fetchFromGitHub {
owner = "intel";
repo = "tbtools";
tag = "v${version}";
hash = "sha256-zq8q3JaoqWAQUat2gIW0Wimi/tZiC6XDphUVjH0viU4=";
};
cargoHash = "sha256-8uzbWJl3Bpvo/rlZnd7DzCNhL088v5pksY7K6yncC1s=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
systemd
];
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Thunderbolt/USB4 debugging tools";
homepage = "https://github.com/intel/tbtools";
license = lib.licenses.mit;
mainProgram = "tblist";
maintainers = with lib.maintainers; [
felixsinger
];
platforms = lib.platforms.linux;
};
}