blob: dfe57f5fef06972a561d1b5dd4cfb8457963c4ee (
plain) (
blame)
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
|
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
, installShellFiles
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "tealdeer";
version = "1.6.1";
src = fetchFromGitHub {
owner = "dbrgn";
repo = "tealdeer";
rev = "v${version}";
sha256 = "sha256-zQzYukhruVUVP1v76/5522ag7wjN9QoE9BtfMNYQ7UY=";
};
cargoSha256 = "sha256-VeJsCWU7sJy88uvGGjpuGRzsAgBRvzOYU1FwpImpiLk=";
buildInputs = lib.optional stdenv.isDarwin Security;
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd tldr \
--bash completion/bash_tealdeer \
--fish completion/fish_tealdeer \
--zsh completion/zsh_tealdeer
'';
# Disable tests that require Internet access:
checkFlags = [
"--skip test_autoupdate_cache"
"--skip test_create_cache_directory_path"
"--skip test_pager_flag_enable"
"--skip test_quiet_cache"
"--skip test_quiet_failures"
"--skip test_quiet_old_cache"
"--skip test_spaces_find_command"
"--skip test_update_cache"
];
meta = with lib; {
description = "Very fast implementation of tldr in Rust";
homepage = "https://github.com/dbrgn/tealdeer";
maintainers = with maintainers; [ davidak newam ];
license = with licenses; [ asl20 mit ];
mainProgram = "tldr";
};
}
|