01ed8ef136
GitOrigin-RevId: 20fc948445a6c22d4e8d5178e9a6bc6e1f5417c8
22 lines
620 B
Nix
22 lines
620 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ascii-image-converter";
|
|
version = "1.13.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TheZoraiz";
|
|
repo = "ascii-image-converter";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-2kg5W5u6YjLce3wNS3A1e89ZYAVK2LyNmPGCm86HxPM=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs=";
|
|
|
|
meta = with lib; {
|
|
description = "Convert images into ASCII art on the console";
|
|
homepage = "https://github.com/TheZoraiz/ascii-image-converter#readme";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.danth ];
|
|
};
|
|
}
|