nixpkgs-suyu/pkgs/tools/text/aha/default.nix
Tobias Geerinckx-Rice 7981d3437d
aha: 0.4.9 -> 0.4.10.1
2016-11-14 14:14:52 +01:00

28 lines
699 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "aha-${version}";
version = "0.4.10.1";
src = fetchFromGitHub {
sha256 = "0j4jn8c0bhvbmpp2ynkw1y0l5dm49s7g5rmsvdxh0g1sjai161ss";
rev = version;
repo = "aha";
owner = "theZiz";
};
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
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 ];
platforms = platforms.linux;
maintainers = with maintainers; [ nckx ];
};
}