nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at devShellTools-shell 27 lines 577 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "meme-image-generator"; 9 version = "1.0.2"; 10 11 src = fetchFromGitHub { 12 owner = "nomad-software"; 13 repo = "meme"; 14 rev = "v${version}"; 15 hash = "sha256-L+JpNg9X3RSNXTozv2H1n2JiQx75i9gFGaQmDFaMIf0="; 16 }; 17 18 vendorHash = null; 19 20 meta = with lib; { 21 description = "Command line utility for creating image macro style memes"; 22 homepage = "https://github.com/nomad-software/meme"; 23 license = licenses.mit; 24 maintainers = [ maintainers.fgaz ]; 25 mainProgram = "meme"; 26 }; 27}