2015-04-27 23:10:14 +01:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
2016-01-24 19:31:44 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-04-27 23:10:14 +01:00
|
|
|
name = "aha-${version}";
|
2018-11-10 13:51:28 +00:00
|
|
|
version = "0.5";
|
2015-04-27 23:10:14 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2018-11-10 13:51:28 +00:00
|
|
|
sha256 = "0byml4rmpiaalwx69jcixl3yvpvwmwiss1jzgsqwshilb2p4qnmz";
|
2015-04-27 23:10:14 +01:00
|
|
|
rev = version;
|
|
|
|
repo = "aha";
|
|
|
|
owner = "theZiz";
|
|
|
|
};
|
|
|
|
|
2015-11-26 17:44:44 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-04-27 23:10:14 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "ANSI HTML Adapter";
|
|
|
|
longDescription = ''
|
|
|
|
aha takes ANSI SGR-coloured input and produces W3C-conformant HTML code.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/theZiz/aha;
|
|
|
|
license = with licenses; [ lgpl2Plus mpl11 ];
|
2018-07-16 20:57:23 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2015-11-17 20:29:29 +00:00
|
|
|
platforms = platforms.linux;
|
2015-04-27 23:10:14 +01:00
|
|
|
};
|
|
|
|
}
|