2019-10-05 13:00:14 +01:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, Security, ansi2html }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "mdcat";
|
2020-09-05 13:31:29 +01:00
|
|
|
version = "0.21.1";
|
2019-10-05 13:00:14 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "lunaryorn";
|
|
|
|
repo = pname;
|
|
|
|
rev = "mdcat-${version}";
|
2020-09-05 13:31:29 +01:00
|
|
|
hash = "sha256-O7LlbSkxcyHQiTHYB/QBJVlShzTSzud3VJDIQ1ScvM4=";
|
2019-10-05 13:00:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-11-10 01:13:39 +00:00
|
|
|
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
|
2019-10-05 13:00:14 +01:00
|
|
|
|
2020-09-05 13:31:29 +01:00
|
|
|
cargoSha256 = "sha256-pvhYKyFraMI4w5nq6L8qs/ONSNDTHElhZnZmD5mmAZs=";
|
2019-10-05 13:00:14 +01:00
|
|
|
|
|
|
|
checkInputs = [ ansi2html ];
|
|
|
|
checkPhase = ''
|
2019-12-19 12:14:02 +00:00
|
|
|
# Skip tests that use the network and that include files.
|
2020-07-05 18:08:49 +01:00
|
|
|
cargo test -- \
|
2020-05-20 20:33:09 +01:00
|
|
|
--skip magic::tests::detect_mimetype_of_larger_than_magic_param_bytes_max_length \
|
|
|
|
--skip magic::tests::detect_mimetype_of_magic_param_bytes_max_length \
|
2020-07-05 18:08:49 +01:00
|
|
|
--skip magic::tests::detect_mimetype_of_png_image \
|
|
|
|
--skip magic::tests::detect_mimetype_of_svg_image \
|
2020-01-14 11:12:48 +00:00
|
|
|
--skip resources::tests::read_url_with_http_url_fails_when_status_404 \
|
2020-07-05 18:08:49 +01:00
|
|
|
--skip resources::tests::read_url_with_http_url_returns_content_when_status_200 \
|
|
|
|
--skip iterm2_tests_render_md_samples_images_md
|
2019-10-05 13:00:14 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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 ];
|
|
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
|
|
};
|
|
|
|
}
|