nixpkgs/pkgs/tools/text/mdcat/default.nix

37 lines
1.2 KiB
Nix
Raw Normal View History

2019-10-05 14:00:14 +02:00
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, Security, ansi2html }:
rustPlatform.buildRustPackage rec {
pname = "mdcat";
2020-04-13 01:16:56 +02:00
version = "0.16.0";
2019-10-05 14:00:14 +02:00
src = fetchFromGitHub {
owner = "lunaryorn";
repo = pname;
rev = "mdcat-${version}";
2020-04-13 01:16:56 +02:00
sha256 = "10svzq7656lynfcgnbyaibfvv48i4289ymxfc0bn0212biyrl1zb";
2019-10-05 14:00:14 +02:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
2019-10-05 14:00:14 +02:00
2020-04-13 01:16:56 +02:00
cargoSha256 = "05nh3dfr7mdw21sdavyyjhr8sa4jcfqzwizbgg92ib7r834ir3m0";
2019-10-05 14:00:14 +02:00
checkInputs = [ ansi2html ];
checkPhase = ''
# Skip tests that use the network and that include files.
2020-01-14 12:12:48 +01:00
cargo test -- --skip terminal::iterm2 \
--skip magic::tests::detect_mimetype_of_svg_image \
2020-01-14 12:12:48 +01:00
--skip magic::tests::detect_mimetype_of_png_image \
--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
2019-10-05 14:00:14 +02:00
'';
meta = with stdenv.lib; {
description = "cat for markdown";
2020-04-13 01:16:56 +02:00
homepage = "https://github.com/lunaryorn/mdcat";
2019-10-05 14:00:14 +02:00
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ davidtwco ];
platforms = platforms.all;
};
}