about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/mm
diff options
context:
space:
mode:
authorAdam Beckmeyer <adam_git@thebeckmeyers.xyz>2016-12-18 17:08:33 -0500
committerAdam Beckmeyer <adam_git@thebeckmeyers.xyz>2016-12-18 17:10:07 -0500
commit7e54f35d65737f55525f8328dd9309bdb93b5ff9 (patch)
tree55e81215f565c53944eaeda3bcc50ff28c41b181 /pkgs/applications/networking/instant-messengers/mm
parent8ca29a796068d65594d7c05aef01b45e07992011 (diff)
mm: init at 2016.11.04
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/mm')
-rw-r--r--pkgs/applications/networking/instant-messengers/mm/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/applications/networking/instant-messengers/mm/default.nix b/pkgs/applications/networking/instant-messengers/mm/default.nix
new file mode 100644
index 0000000000000..a75835b3c7e97
--- /dev/null
+++ b/pkgs/applications/networking/instant-messengers/mm/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildGoPackage, fetchFromGitLab }:
+
+buildGoPackage rec {
+  name = "mm-${version}";
+  version = "2016.11.04";
+
+  goPackagePath = "gitlab.com/meutraa/mm";
+
+  src = fetchFromGitLab {
+    owner = "meutraa";
+    repo = "mm";
+    rev = "473fdd97285168054b672dbad2ffc4047324c518";
+    sha256 = "1s8v5gxpw1sms1g3i8nq2x2mmmyz97qkmxs1fzlspfcd6i8vknkp";
+  };
+
+  meta = {
+    description = "A file system based matrix client";
+    homepage = https://gitlab.com/meutraa/mm;
+    license = stdenv.lib.licenses.isc;
+  };
+}