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