28 lines
670 B
Nix
28 lines
670 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "ascii-image-converter";
|
|
version = "1.13.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TheZoraiz";
|
|
repo = "ascii-image-converter";
|
|
tag = "v${version}";
|
|
hash = "sha256-svM/TzGQU/QgjqHboy0470+A6p4kR76typ9gnfjfAJk=";
|
|
};
|
|
|
|
vendorHash = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs=";
|
|
|
|
meta = {
|
|
description = "Convert images into ASCII art on the console";
|
|
homepage = "https://github.com/TheZoraiz/ascii-image-converter#readme";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ danth ];
|
|
mainProgram = "ascii-image-converter";
|
|
};
|
|
}
|