pandoc-imagine: init at unstable-2018-11-19

This commit is contained in:
Patrick Hilhorst 2019-04-17 14:41:00 +02:00
parent f8564ae974
commit 3fba87fb5b
No known key found for this signature in database
GPG Key ID: 589BB0A8DAFEF2B2
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ fetchFromGitHub, buildPythonApplication, lib, pandocfilters, six }:
buildPythonApplication rec {
pname = "pandoc-imagine";
version = "unstable-2018-11-19";
src = fetchFromGitHub {
repo = "imagine";
owner = "hertogp";
rev = "cc9be85";
sha256 = "0iksh9081g488yfjzd24bz4lm1nrrjamph1vynx3imrcfgyq7nsb";
};
propagatedBuildInputs = [ pandocfilters six ];
# No tests in archive
doCheck = false;
meta = with lib; {
homepage = src.meta.homepage;
description = ''
A pandoc filter that will turn code blocks tagged with certain classes
into images or ASCII art
'';
license = with licenses; [ mit ];
maintainers = with maintainers; [ synthetica ];
};
}

View File

@ -4628,6 +4628,8 @@ in
pa_applet = callPackage ../tools/audio/pa-applet { };
pandoc-imagine = python3Packages.callPackage ../tools/misc/pandoc-imagine { };
pasystray = callPackage ../tools/audio/pasystray { };
phash = callPackage ../development/libraries/phash { };