2018-03-13 15:49:34 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, expat
|
|
|
|
, libmicrohttpd
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "stabber-unstable";
|
2020-08-13 13:39:32 +02:00
|
|
|
version = "2020-06-08";
|
2018-03-13 15:49:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "boothj5";
|
|
|
|
repo = "stabber";
|
2020-08-13 13:39:32 +02:00
|
|
|
rev = "3e5c2200715666aad403d0076e8ab584b329965e";
|
|
|
|
sha256 = "0042nbgagl4gcxa5fj7bikjdi1gbk0jwyqnzc5lswpb0l5y0i1ql";
|
2018-03-13 15:49:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
preAutoreconf = ''
|
|
|
|
mkdir m4
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ autoreconfHook pkgconfig glib expat libmicrohttpd ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Stubbed XMPP Server";
|
2020-08-13 13:39:32 +02:00
|
|
|
homepage = "https://github.com/profanity-im/stabber";
|
2018-03-13 15:49:34 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ hschaeidt ];
|
|
|
|
};
|
|
|
|
}
|