nixpkgs/pkgs/applications/networking/instant-messengers/mm/default.nix

22 lines
583 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchgit }:
2016-12-18 22:08:33 +00:00
2020-11-17 14:37:23 +00:00
buildGoModule {
pname = "mm";
2020-11-17 14:37:23 +00:00
version = "2020.11.17";
2016-12-18 22:08:33 +00:00
2020-11-17 14:37:23 +00:00
src = fetchgit {
url = "https://git.lost.host/meutraa/mm.git";
rev = "e5fa8eeb845aac8f28fc36013ee8a1dbe1e5710c";
sha256 = "sha256-SdD4EE/rc85H7xqKB/kU8XFsC63i1sVObPha/zrxFGk=";
2016-12-18 22:08:33 +00:00
};
2020-11-17 14:37:23 +00:00
vendorSha256 = "sha256-zJJ9PzQShv2iRNyCg1XVscbwjV9ZtMIojJDtXXm3rVM=";
meta = with lib; {
2016-12-18 22:08:33 +00:00
description = "A file system based matrix client";
2020-11-17 14:37:23 +00:00
homepage = "https://git.lost.host/meutraa/mm";
2020-11-17 14:59:24 +00:00
license = licenses.isc;
maintainers = with maintainers; [ meutraa ];
2016-12-18 22:08:33 +00:00
};
}