ascii-image-converter: init at 1.11.0

This commit is contained in:
Daniel Thwaites 2021-12-04 23:31:26 +00:00
parent e75e62cca3
commit 97fe3d9aa3
No known key found for this signature in database
GPG Key ID: D8AFC4BF05670F9D
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ascii-image-converter";
version = "1.11.0";
src = fetchFromGitHub {
owner = "TheZoraiz";
repo = "ascii-image-converter";
rev = "v${version}";
sha256 = "DitJnWIz1Dt9yXtyQp/z738IAmG4neYmfc49Wdjos7Q=";
};
runVend = true;
vendorSha256 = "JKrBMhzBL1+jlMPudynjOc/ekFiUVaxltyLr4V8QZbg=";
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 ];
};
}

View File

@ -23722,6 +23722,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
ascii-image-converter = callPackage ../applications/graphics/ascii-image-converter { };
artha = callPackage ../applications/misc/artha { };
atlassian-cli = callPackage ../applications/office/atlassian-cli { };