summary refs log tree commit diff
path: root/pkgs/misc/stabber/default.nix
blob: 17ef047ede733b00b297be695835e51c31f3e231 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, expat
, libmicrohttpd
}:

with stdenv.lib;

stdenv.mkDerivation {
  pname = "stabber-unstable";
  version = "2016-11-09";

  src = fetchFromGitHub {
    owner = "boothj5";
    repo = "stabber";
    rev = "ed75087e4483233eb2cc5472dbd85ddfb7a1d4d4";
    sha256 = "1l6cibggi9rx6d26j1g92r1m8zm1g899f6z7n4pfqp84mrfqgz0p";
  };

  preAutoreconf = ''
    mkdir m4
  '';

  buildInputs = [ autoreconfHook pkgconfig glib expat libmicrohttpd ];

  meta = {
    description = "Stubbed XMPP Server";
    homepage = "https://github.com/boothj5/stabber";
    license = licenses.gpl3;
    platforms = platforms.unix;
    maintainers = with maintainers; [ hschaeidt ];
  };
}