mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
e528b7ca30
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
27 lines
574 B
Nix
27 lines
574 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "meme-image-generator";
|
|
version = "1.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nomad-software";
|
|
repo = "meme";
|
|
rev = "v${version}";
|
|
hash = "sha256-L+JpNg9X3RSNXTozv2H1n2JiQx75i9gFGaQmDFaMIf0=";
|
|
};
|
|
|
|
vendorHash = 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 ];
|
|
mainProgram = "meme";
|
|
};
|
|
}
|