fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, cmake, openssl }:
2
3stdenv.mkDerivation rec {
4 name = "minmay-${version}";
5 version = "1.0.0";
6
7 src = fetchurl {
8 url = "https://github.com/mazhe/minmay/archive/1.0.0.tar.gz";
9 sha256 = "1amycxvhbd0lv6j5zsvxiwrx29jvndcy856j3b3bisys24h95zw2";
10 };
11
12 buildInputs = [ cmake openssl ];
13
14 meta = {
15 homepage = "https://github.com/mazhe/minmay";
16 license = stdenv.lib.licenses.lgpl21Plus;
17 description = "An XMPP library (forked from the iksemel project)";
18 };
19}