Merge pull request #281327 from r-ryantm/auto-update/mdcat

mdcat: 2.1.0 -> 2.1.1
This commit is contained in:
Sandro 2024-01-17 00:26:54 +01:00 committed by GitHub
commit dde89aa549
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,20 +13,20 @@
rustPlatform.buildRustPackage rec {
pname = "mdcat";
version = "2.1.0";
version = "2.1.1";
src = fetchFromGitHub {
owner = "swsnr";
repo = "mdcat";
rev = "mdcat-${version}";
hash = "sha256-b/iLjqNcCUGaGllSXA5eq04mz/I8cbz0pXJ/Dn+yDDo=";
hash = "sha256-2ThjIv77kdjHyOpGcQplYZXPdu+cN4oBnyHRGptN7f4=";
};
nativeBuildInputs = [ pkg-config asciidoctor installShellFiles ];
buildInputs = [ openssl ]
++ lib.optionals stdenv.isDarwin [ Security SystemConfiguration ];
cargoHash = "sha256-RGpqTVafG7YzeUwTj8uU0PsqX2bq3BVg/ci9MVyeH80=";
cargoHash = "sha256-y828L8HHkFeem/76yizQWX7DpCGQP+HzJP+pQnxAn70=";
nativeCheckInputs = [ ansi2html ];
# Skip tests that use the network and that include files.
@ -56,6 +56,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "cat for markdown";
homepage = "https://github.com/swsnr/mdcat";
changelog = "https://github.com/swsnr/mdcat/releases/tag/mdcat-${version}";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ SuperSandro2000 ];
};