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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.9 KiB
Nix
Raw Normal View History

2021-07-05 21:32:18 +00:00
{ lib
, stdenv
, fetchFromGitHub
2020-10-19 12:28:28 +00:00
, rustPlatform
, pkg-config
2020-10-19 12:28:28 +00:00
, asciidoctor
, openssl
, Security
, ansi2html
, installShellFiles
}:
2019-10-05 12:00:14 +00:00
rustPlatform.buildRustPackage rec {
pname = "mdcat";
2023-04-26 21:58:17 +00:00
version = "2.0.3";
2019-10-05 12:00:14 +00:00
src = fetchFromGitHub {
owner = "swsnr";
repo = "mdcat";
2019-10-05 12:00:14 +00:00
rev = "mdcat-${version}";
2023-04-26 21:58:17 +00:00
sha256 = "sha256-S47xJmwOCDrJJSYP9WiUKFWR9UZDNgY3mc/fTHaKsvA=";
2019-10-05 12:00:14 +00:00
};
nativeBuildInputs = [ pkg-config asciidoctor installShellFiles ];
2021-07-05 21:32:18 +00:00
buildInputs = [ openssl ]
++ lib.optional stdenv.isDarwin Security;
2019-10-05 12:00:14 +00:00
2023-04-26 21:58:17 +00:00
cargoSha256 = "sha256-g/Il3Sff9NtEfGTXBOGyRw6/GXje9kVwco0URyhv4TI=";
2019-10-05 12:00:14 +00:00
nativeCheckInputs = [ ansi2html ];
2020-10-19 12:28:28 +00: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 21:32:18 +00:00
"--skip resources::tests::read_url_with_http_url_fails_when_size_limit_is_exceeded"
2020-10-19 12:28:28 +00: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
ln -sr $out/bin/{mdcat,mdless}
for bin in mdcat mdless; do
installShellCompletion \
--bash $releaseDir/build/mdcat-*/out/completions/$bin.bash \
--fish $releaseDir/build/mdcat-*/out/completions/$bin.fish \
--zsh $releaseDir/build/mdcat-*/out/completions/_$bin
done
2019-10-05 12:00:14 +00:00
'';
meta = with lib; {
2019-10-05 12:00:14 +00:00
description = "cat for markdown";
homepage = "https://github.com/swsnr/mdcat";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ SuperSandro2000 ];
2019-10-05 12:00:14 +00:00
};
}