python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / misc / stabber / default.nix
blob478cbda3dc00377a7b041fbbbc7a8dfdf4701f73
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat
2 , libmicrohttpd
3 }:
5 with lib;
7 stdenv.mkDerivation {
8   pname = "stabber-unstable";
9   version = "2020-06-08";
11   src = fetchFromGitHub {
12     owner = "boothj5";
13     repo = "stabber";
14     rev = "3e5c2200715666aad403d0076e8ab584b329965e";
15     sha256 = "0042nbgagl4gcxa5fj7bikjdi1gbk0jwyqnzc5lswpb0l5y0i1ql";
16   };
18   preAutoreconf = ''
19     mkdir m4
20   '';
22   nativeBuildInputs = [ pkg-config autoreconfHook ];
23   buildInputs = [ glib expat libmicrohttpd ];
25   meta = {
26     description = "Stubbed XMPP Server";
27     homepage = "https://github.com/profanity-im/stabber";
28     license = licenses.gpl3;
29     platforms = platforms.unix;
30     maintainers = with maintainers; [ hschaeidt ];
31   };