mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
62 lines
1.3 KiB
Nix
62 lines
1.3 KiB
Nix
{
|
|
lib
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, pkg-config
|
|
, stdenv
|
|
, darwin
|
|
, libusb1
|
|
, nix-update-script
|
|
, testers
|
|
, cyme
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cyme";
|
|
version = "1.8.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tuna-f1sh";
|
|
repo = "cyme";
|
|
rev = "v${version}";
|
|
hash = "sha256-5433lq3u+s4LiC9089Ul7wGJiouQdVDoM3RT0QSiAnU=";
|
|
};
|
|
|
|
cargoHash = "sha256-EW4M072qWCghg4UlhjMBR6DVzKsu/foE+j4MOSiHqNk=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.DarwinTools
|
|
];
|
|
|
|
buildInputs = [
|
|
libusb1
|
|
];
|
|
|
|
checkFlags = [
|
|
# doctest that requires access outside sandbox
|
|
"--skip=udev::hwdb::get"
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# system_profiler is not available in the sandbox
|
|
"--skip=test_run"
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
package = cyme;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/tuna-f1sh/cyme";
|
|
changelog = "https://github.com/tuna-f1sh/cyme/releases/tag/${src.rev}";
|
|
description = "Modern cross-platform lsusb";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ h7x4 ];
|
|
platforms = platforms.linux ++ platforms.darwin ++ platforms.windows;
|
|
mainProgram = "cyme";
|
|
};
|
|
}
|