ansilove: init at 4.2.1

JetHair 93cf1a9a 79927b4e

+35
+35
pkgs/by-name/an/ansilove/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + libansilove, 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "ansilove"; 11 + version = "4.2.1"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "ansilove"; 15 + repo = "ansilove"; 16 + tag = version; 17 + hash = "sha256-13v2NLVJt11muwocBiQYz/rxQkte/W6LXwB/H/E9Nvk="; 18 + }; 19 + 20 + nativeBuildInputs = [ 21 + cmake 22 + ]; 23 + 24 + buildInputs = [ libansilove ]; 25 + 26 + meta = { 27 + description = "ANSI and ASCII art to PNG converter in C"; 28 + homepage = "https://github.com/ansilove/ansilove"; 29 + changelog = "https://github.com/ansilove/ansilove/blob/${src.rev}/ChangeLog"; 30 + license = lib.licenses.bsd2; 31 + maintainers = with lib.maintainers; [ jethair ]; 32 + mainProgram = "ansilove"; 33 + platforms = lib.platforms.unix; 34 + }; 35 + }