blob: 748be9e0bfaebbb3a4a6e356e60ac4a570ae3945 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
{
lib,
fetchFromGitHub,
rustPlatform,
pkg-config,
installShellFiles,
stdenv,
darwin,
versionCheckHook,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "cyme";
version = "2.1.3";
src = fetchFromGitHub {
owner = "tuna-f1sh";
repo = "cyme";
rev = "v${version}";
hash = "sha256-7V/MExL1OJ+mBPlLcYiK6HTjvbHbIbrf13Rak+Za3d4=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-4QxxwCBiPYd83rKEcoRJhHhQArzq9oQ287UBVrjbElg=";
nativeBuildInputs =
[
pkg-config
installShellFiles
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
darwin.DarwinTools
];
checkFlags = [
# doctest that requires access outside sandbox
"--skip=udev::hwdb::get"
# - system_profiler is not available in the sandbox
# - workaround for "Io Error: No such file or directory"
"--skip=test_run"
];
postInstall = ''
installManPage doc/cyme.1
installShellCompletion --cmd cyme \
--bash doc/cyme.bash \
--fish doc/cyme.fish \
--zsh doc/_cyme
'';
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
versionCheckProgram = "${placeholder "out"}/bin/${meta.mainProgram}";
versionCheckProgramArg = "--version";
passthru.updateScript = nix-update-script { };
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";
};
}
|