libansilove: init at 1.4.2

This commit is contained in:
JetHair 2025-05-18 04:22:11 +05:30
parent d74f180f83
commit 79927b4ec2
2 changed files with 36 additions and 1 deletions

View File

@ -11482,7 +11482,7 @@
githubId = 30251156;
name = "Jesse Moore";
};
jethair= {
jethair = {
email = "jethair@duck.com";
github = "JetHair";
githubId = 106916147;

View File

@ -0,0 +1,35 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
gd,
}:
stdenv.mkDerivation rec {
pname = "libansilove";
version = "1.4.2";
src = fetchFromGitHub {
owner = "ansilove";
repo = "libansilove";
tag = version;
hash = "sha256-kbQ7tbQbJ8zYhdbfiVZY26woyR4NNzqjCJ/5nrunlWs=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [ gd ];
meta = {
description = "Library for converting ANSI, ASCII, and other formats to PNG";
homepage = "https://github.com/ansilove/libansilove";
changelog = "https://github.com/ansilove/libansilove/blob/${src.rev}/ChangeLog";
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ jethair ];
mainProgram = "libansilove";
platforms = lib.platforms.unix;
};
}