biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / ascii-image-converter / default.nix
blobd0ae5420bdfec25a68e8654e3db23c8323e2000b
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "ascii-image-converter";
5   version = "1.13.1";
7   src = fetchFromGitHub {
8     owner = "TheZoraiz";
9     repo = "ascii-image-converter";
10     rev = "v${version}";
11     sha256 = "sha256-svM/TzGQU/QgjqHboy0470+A6p4kR76typ9gnfjfAJk=";
12   };
14   vendorHash = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs=";
16   meta = with lib; {
17     description = "Convert images into ASCII art on the console";
18     homepage = "https://github.com/TheZoraiz/ascii-image-converter#readme";
19     license = licenses.asl20;
20     maintainers = [ maintainers.danth ];
21     mainProgram = "ascii-image-converter";
22   };