biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / aha / default.nix
blob9a545a7f3f31bfa538ef97b1584ffab7a2c4e5c9
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "aha";
5   version = "0.5.1";
7   src = fetchFromGitHub {
8     sha256 = "1gywad0rvvz3c5balz8cxsnx0562hj2ngzqyr8zsy2mb4pn0lpgv";
9     rev = version;
10     repo = "aha";
11     owner = "theZiz";
12   };
14   makeFlags = [ "PREFIX=$(out)" ];
16   enableParallelBuilding = true;
18   meta = with lib; {
19     description = "ANSI HTML Adapter";
20     mainProgram = "aha";
21     longDescription = ''
22       aha takes ANSI SGR-coloured input and produces W3C-conformant HTML code.
23     '';
24     homepage = "https://github.com/theZiz/aha";
25     changelog = "https://github.com/theZiz/aha/blob/${version}/CHANGELOG";
26     license = with licenses; [ lgpl2Plus mpl11 ];
27     maintainers = with maintainers; [ pSub ];
28     platforms = platforms.all;
29   };