summary refs log tree commit diff
path: root/pkgs/applications/graphics/meme
diff options
context:
space:
mode:
authorFrancesco Gazzetta <francygazz@gmail.com>2018-01-11 23:56:09 +0100
committerFrancesco Gazzetta <francygazz@gmail.com>2018-01-26 22:38:02 +0000
commit056e74dd78baa8c259e9c8b22257058f8b1ce265 (patch)
tree183c7a3f40f09e95457bd445efd5c24564b2ab23 /pkgs/applications/graphics/meme
parent75936c412d81a0f5f6efea8d73147134b3cad939 (diff)
downloadnixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.tar
nixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.tar.gz
nixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.tar.bz2
nixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.tar.lz
nixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.tar.xz
nixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.tar.zst
nixpkgs-056e74dd78baa8c259e9c8b22257058f8b1ce265.zip
meme: init at 2017-09-10
Diffstat (limited to 'pkgs/applications/graphics/meme')
-rw-r--r--pkgs/applications/graphics/meme/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/meme/default.nix b/pkgs/applications/graphics/meme/default.nix
new file mode 100644
index 00000000000..2fddc39e0d0
--- /dev/null
+++ b/pkgs/applications/graphics/meme/default.nix
@@ -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;
+  };
+}