nixpkgs/pkgs/tools/text/aha/default.nix
R. RyanTM 1ec2eb8b7b aha: 0.4.10.6 -> 0.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/aha/versions
2018-11-10 05:51:28 -08:00

29 lines
694 B
Nix

{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "aha-${version}";
version = "0.5";
src = fetchFromGitHub {
sha256 = "0byml4rmpiaalwx69jcixl3yvpvwmwiss1jzgsqwshilb2p4qnmz";
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 ];
maintainers = with maintainers; [ pSub ];
platforms = platforms.linux;
};
}