mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-18 03:34:58 +00:00
23 lines
606 B
Nix
23 lines
606 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "ascii-image-converter";
|
|
version = "1.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TheZoraiz";
|
|
repo = "ascii-image-converter";
|
|
rev = "v${version}";
|
|
sha256 = "5Sa9PqhoJ/LCAHrymqVCO4bI39mQeVa4xv1z235Cxvg=";
|
|
};
|
|
|
|
vendorSha256 = "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 ];
|
|
};
|
|
}
|