lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 28 lines 699 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 name = "aha-${version}"; 5 version = "0.4.10.6"; 6 7 src = fetchFromGitHub { 8 sha256 = "18mz3f5aqw4vbdrxf8wblqm6nca73ppq9hb2z2ppw6k0557i71kz"; 9 rev = version; 10 repo = "aha"; 11 owner = "theZiz"; 12 }; 13 14 makeFlags = [ "PREFIX=$(out)" ]; 15 16 enableParallelBuilding = true; 17 18 meta = with stdenv.lib; { 19 description = "ANSI HTML Adapter"; 20 longDescription = '' 21 aha takes ANSI SGR-coloured input and produces W3C-conformant HTML code. 22 ''; 23 homepage = https://github.com/theZiz/aha; 24 license = with licenses; [ lgpl2Plus mpl11 ]; 25 maintainers = with maintainers; [ pSub ]; 26 platforms = platforms.linux; 27 }; 28}