2015-04-27 15:10:14 -07:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
2016-01-24 11:31:44 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "aha";
|
2020-08-12 17:17:27 -07:00
|
|
|
version = "0.5.1";
|
2015-04-27 15:10:14 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2020-08-12 17:17:27 -07:00
|
|
|
sha256 = "1gywad0rvvz3c5balz8cxsnx0562hj2ngzqyr8zsy2mb4pn0lpgv";
|
2015-04-27 15:10:14 -07:00
|
|
|
rev = version;
|
|
|
|
repo = "aha";
|
|
|
|
owner = "theZiz";
|
|
|
|
};
|
|
|
|
|
2015-11-26 09:44:44 -08:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-04-27 15:10:14 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "ANSI HTML Adapter";
|
|
|
|
longDescription = ''
|
|
|
|
aha takes ANSI SGR-coloured input and produces W3C-conformant HTML code.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/theZiz/aha";
|
2015-04-27 15:10:14 -07:00
|
|
|
license = with licenses; [ lgpl2Plus mpl11 ];
|
2018-07-16 12:57:23 -07:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2020-08-12 21:20:00 -07:00
|
|
|
platforms = platforms.all;
|
2015-04-27 15:10:14 -07:00
|
|
|
};
|
|
|
|
}
|