nixpkgs/pkgs/applications/graphics/meme/default.nix

30 lines
707 B
Nix
Raw Normal View History

2020-12-02 16:22:39 +00:00
{ stdenv
, unstableGitUpdater
, buildGoModule
2020-12-02 16:22:39 +00:00
, fetchFromGitHub
}:
2018-01-11 22:56:09 +00:00
buildGoModule {
2020-12-02 16:22:39 +00:00
pname = "meme";
version = "unstable-2020-05-28";
2018-01-11 22:56:09 +00:00
src = fetchFromGitHub {
owner = "nomad-software";
repo = "meme";
rev = "33a8b7d0de6996294a0464a605dacc17b26a6b02";
sha256 = "05h8d6pjszhr49xqg02nw94hm95kb7w1i7nw8jxi582fxxm2qbnm";
2018-01-11 22:56:09 +00:00
};
vendorSha256 = null;
2020-12-02 16:22:39 +00:00
passthru.updateScript = unstableGitUpdater { };
2018-01-11 22:56:09 +00:00
meta = with stdenv.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;
};
}