uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
58
pkgs/tools/text/mdcat/default.nix
Normal file
58
pkgs/tools/text/mdcat/default.nix
Normal file
|
|
@ -0,0 +1,58 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitea
|
||||
, rustPlatform
|
||||
, pkg-config
|
||||
, asciidoctor
|
||||
, openssl
|
||||
, Security
|
||||
, ansi2html
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "mdcat";
|
||||
version = "0.27.1";
|
||||
|
||||
src = fetchFromGitea {
|
||||
domain = "codeberg.org";
|
||||
owner = "flausch";
|
||||
repo = "mdcat";
|
||||
rev = "mdcat-${version}";
|
||||
sha256 = "sha256-iWFWpUyg/VYI+AKFsJe/rOYco+680l/bIHX0qXfD3u0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config asciidoctor installShellFiles ];
|
||||
buildInputs = [ openssl ]
|
||||
++ lib.optional stdenv.isDarwin Security;
|
||||
|
||||
cargoSha256 = "sha256-e/yupkCqWZZCfD8brVb2yD4pt3ExSfwCm2bmTyjRGpA=";
|
||||
|
||||
checkInputs = [ ansi2html ];
|
||||
# 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"
|
||||
"--skip resources::tests::read_url_with_http_url_fails_when_size_limit_is_exceeded"
|
||||
"--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 \
|
||||
--fish $releaseDir/build/mdcat-*/out/completions/mdcat.fish \
|
||||
--zsh $releaseDir/build/mdcat-*/out/completions/_mdcat
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "cat for markdown";
|
||||
homepage = "https://codeberg.org/flausch/mdcat";
|
||||
license = with licenses; [ mpl20 ];
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue