Merge pull request #280474 from samueltardieu/remove-rtthost

remove: rtthost
This commit is contained in:
Julien Malka 2024-01-22 09:52:18 +01:00 committed by GitHub
commit d2df97157d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 38 deletions

View File

@ -1,33 +0,0 @@
{ lib
, stdenv
, rustPlatform
, fetchCrate
, pkg-config
, libusb1
, DarwinTools
, AppKit
}:
rustPlatform.buildRustPackage rec {
pname = "rtthost";
version = "0.22.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-Pb7Df3JI6ACcJ81+9KZ8qMM5Y/VT0kO5kubC3g0Wtlk=";
};
cargoHash = "sha256-Wb+ZPUrNA3LW4huT1QnyW8RKkh4Ow6gBT1VByHlEwGg=";
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.isDarwin [ DarwinTools ];
buildInputs = [ libusb1 ] ++ lib.optionals stdenv.isDarwin [ AppKit ];
meta = with lib; {
description = "RTT (Real-Time Transfer) client";
homepage = "https://probe.rs/";
changelog = "https://github.com/probe-rs/probe-rs/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ samueltardieu ];
};
}

View File

@ -748,11 +748,6 @@ with pkgs;
inherit (darwin) DarwinTools;
};
rtthost = callPackage ../development/tools/rust/rtthost {
inherit (darwin.apple_sdk.frameworks) AppKit;
inherit (darwin) DarwinTools;
};
mix2nix = callPackage ../development/tools/mix2nix {
elixir = elixir_1_14;
};