27 lines
602 B
Nix
27 lines
602 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "meme-image-generator";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nomad-software";
|
|
repo = "meme";
|
|
rev = "v${version}";
|
|
sha256 = "089r0v5az2d2njn0s3d3wd0861pcs4slg6zl0rj4cm1k5cj8yd1k";
|
|
};
|
|
|
|
vendorSha256 = null;
|
|
|
|
meta = with lib; {
|
|
description = "A command line utility for creating image macro style memes";
|
|
homepage = "https://github.com/nomad-software/meme";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.fgaz ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
};
|
|
}
|