nixpkgs/pkgs/applications/graphics/ascii-image-converter/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
618 B
Nix
Raw Normal View History

2021-12-05 00:31:26 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "ascii-image-converter";
version = "1.13.1";
2021-12-05 00:31:26 +01:00
src = fetchFromGitHub {
owner = "TheZoraiz";
repo = "ascii-image-converter";
rev = "v${version}";
sha256 = "sha256-svM/TzGQU/QgjqHboy0470+A6p4kR76typ9gnfjfAJk=";
2021-12-05 00:31:26 +01:00
};
vendorHash = "sha256-rQS3QH9vnEbQZszG3FOr1P5HYgS63BurCNCFQTTdvZs=";
2021-12-05 00:31:26 +01:00
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 ];
};
}