2021-07-05 22:32:18 +01:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2020-10-19 13:28:28 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
2021-01-17 09:17:16 +00:00
|
|
|
, pkg-config
|
2020-10-19 13:28:28 +01:00
|
|
|
, asciidoctor
|
|
|
|
, openssl
|
|
|
|
, Security
|
|
|
|
, ansi2html
|
|
|
|
, installShellFiles
|
|
|
|
}:
|
2019-10-05 13:00:14 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "mdcat";
|
2021-12-07 14:00:43 +00:00
|
|
|
version = "0.24.2";
|
2019-10-05 13:00:14 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lunaryorn";
|
|
|
|
repo = pname;
|
|
|
|
rev = "mdcat-${version}";
|
2021-12-07 14:00:43 +00:00
|
|
|
sha256 = "sha256-9XVKLe1Kyq5SpJFpXg/GD/V+uiieljk7UoDzJ1MZBlA=";
|
2019-10-05 13:00:14 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config asciidoctor installShellFiles ];
|
2021-07-05 22:32:18 +01:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ lib.optional stdenv.isDarwin Security;
|
2019-10-05 13:00:14 +01:00
|
|
|
|
2021-12-07 14:00:43 +00:00
|
|
|
cargoSha256 = "sha256-cgX/jPmOU3o5gAwbneGeQLU2hIrGdrAvOaA/TOXSZgg=";
|
2019-10-05 13:00:14 +01:00
|
|
|
|
|
|
|
checkInputs = [ ansi2html ];
|
2020-10-19 13:28:28 +01:00
|
|
|
# Skip tests that use the network and that include files.
|
|
|
|
checkFlags = [
|
|
|
|
"--skip magic::tests::detect_mimetype_of_larger_than_magic_param_bytes_max_length"
|
|
|
|
"--skip magic::tests::detect_mimetype_of_magic_param_bytes_max_length"
|
|
|
|
"--skip magic::tests::detect_mimetype_of_png_image"
|
|
|
|
"--skip magic::tests::detect_mimetype_of_svg_image"
|
2021-07-05 22:32:18 +01:00
|
|
|
"--skip resources::tests::read_url_with_http_url_fails_when_size_limit_is_exceeded"
|
2020-10-19 13:28:28 +01:00
|
|
|
"--skip resources::tests::read_url_with_http_url_fails_when_status_404"
|
|
|
|
"--skip resources::tests::read_url_with_http_url_returns_content_when_status_200"
|
|
|
|
"--skip iterm2_tests_render_md_samples_images_md"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installManPage $releaseDir/build/mdcat-*/out/mdcat.1
|
|
|
|
installShellCompletion --bash $releaseDir/build/mdcat-*/out/completions/mdcat.bash
|
|
|
|
installShellCompletion --fish $releaseDir/build/mdcat-*/out/completions/mdcat.fish
|
|
|
|
installShellCompletion --zsh $releaseDir/build/mdcat-*/out/completions/_mdcat
|
2019-10-05 13:00:14 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-10-05 13:00:14 +01:00
|
|
|
description = "cat for markdown";
|
2020-04-13 00:16:56 +01:00
|
|
|
homepage = "https://github.com/lunaryorn/mdcat";
|
2019-10-05 13:00:14 +01:00
|
|
|
license = with licenses; [ asl20 ];
|
2021-07-05 22:32:18 +01:00
|
|
|
maintainers = with maintainers; [ davidtwco SuperSandro2000 ];
|
2019-10-05 13:00:14 +01:00
|
|
|
};
|
|
|
|
}
|