3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #107107 from marsam/fix-mdcat-build

mdcat: fix build
This commit is contained in:
Mario Rodas 2020-12-17 14:20:37 -05:00 committed by GitHub
commit 1fe44af287
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -4,6 +4,8 @@ buildPythonPackage rec {
pname = "ansi2html";
version = "1.6.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0f124ea7efcf3f24f1f9398e527e688c9ae6eab26b0b84e1299ef7f94d92c596";
@ -22,6 +24,5 @@ buildPythonPackage rec {
homepage = "https://github.com/ralphbean/ansi2html";
license = licenses.lgpl3Plus;
maintainers = with maintainers; [ davidtwco ];
platforms = platforms.all;
};
}

View file

@ -5268,7 +5268,7 @@ in
mdcat = callPackage ../tools/text/mdcat {
inherit (darwin.apple_sdk.frameworks) Security;
inherit (pythonPackages) ansi2html;
inherit (python3Packages) ansi2html;
};
medfile = callPackage ../development/libraries/medfile { };