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

This commit is contained in:
Patrick Hilhorst
2019-04-17 14:58:25 +02:00
parent f8564ae974
commit 3fba87fb5b
2 changed files with 30 additions and 0 deletions
@@ -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 ];
};
}