Merge pull request #142643 from danth/ascii-image-converter

This commit is contained in:
Sandro 2021-12-05 00:58:22 +01:00 committed by GitHub
commit 955bc9b5c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 36 additions and 0 deletions

View file

@ -2553,6 +2553,17 @@
githubId = 1298344;
name = "Daniel Fullmer";
};
danth = {
name = "Daniel Thwaites";
email = "danthwaites30@btinternet.com";
matrix = "@danth:matrix.org";
github = "danth";
githubId = 28959268;
keys = [{
longkeyid = "rsa3072/0xD8AFC4BF05670F9D";
fingerprint = "4779 D1D5 3C97 2EAE 34A5 ED3D D8AF C4BF 0567 0F9D";
}];
};
dan4ik605743 = {
email = "6057430gu@gmail.com";
github = "dan4ik605743";

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

@ -24035,6 +24035,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 { };