Merge pull request #196041 from SuperSandro2000/mdcat

mdcat: switch back to GitHub
This commit is contained in:
Mario Rodas 2022-10-14 19:23:51 -05:00 committed by GitHub
commit 8ee98d9a96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
{ lib
, stdenv
, fetchFromGitea
, fetchFromGitHub
, rustPlatform
, pkg-config
, asciidoctor
@ -14,9 +14,8 @@ rustPlatform.buildRustPackage rec {
pname = "mdcat";
version = "0.28.0";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "flausch";
src = fetchFromGitHub {
owner = "lunaryorn";
repo = "mdcat";
rev = "mdcat-${version}";
sha256 = "sha256-l64gRoWYYLbPA0n6vNQf14CCUtnkfMnQdqbetIbWvBU=";
@ -51,7 +50,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "cat for markdown";
homepage = "https://codeberg.org/flausch/mdcat";
homepage = "https://github.com/lunaryorn/mdcat";
license = with licenses; [ mpl20 ];
maintainers = with maintainers; [ SuperSandro2000 ];
};