Skip to content

Commit

Permalink
meme: init at 2017-09-10
Browse files Browse the repository at this point in the history
  • Loading branch information
fgaz committed Jan 26, 2018
1 parent 75936c4 commit 056e74d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/graphics/meme/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
name = "meme-unstable-${version}";
version = "2017-09-10";

owner = "nomad-software";
repo = "meme";
goPackagePath = "github.com/${owner}/${repo}";

src = fetchFromGitHub {
inherit owner repo;
rev = "a6521f2eecb0aac22937b0013747ed9cb40b81ea";
sha256 = "1gbsv1d58ck6mj89q31s5b0ppw51ab76yqgz39jgwqnkidvzdfly";
};

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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16013,6 +16013,8 @@ with pkgs;

meld = callPackage ../applications/version-management/meld { };

meme = callPackage ../applications/graphics/meme { };

mcomix = callPackage ../applications/graphics/mcomix { };

mendeley = libsForQt5.callPackage ../applications/office/mendeley {
Expand Down

0 comments on commit 056e74d

Please sign in to comment.