about summary refs log tree commit diff
path: root/nixpkgs/pkgs/misc/stabber/default.nix
blob: 7ec9a8985e1de62cfe07ec985eb92de252faa3e7 (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
32
33
34
35
36
37
38
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, glib, expat
, libmicrohttpd, darwin
}:

with lib;

stdenv.mkDerivation {
  pname = "stabber-unstable";
  version = "2020-06-08";

  src = fetchFromGitHub {
    owner = "boothj5";
    repo = "stabber";
    rev = "3e5c2200715666aad403d0076e8ab584b329965e";
    sha256 = "0042nbgagl4gcxa5fj7bikjdi1gbk0jwyqnzc5lswpb0l5y0i1ql";
  };

  postPatch = ''
    # New toolchainsd like gcc-13 trigger warnings and fail the build.
    substituteInPlace configure.ac --replace "-Werror" ""
  '';

  preAutoreconf = ''
    mkdir m4
  '';

  nativeBuildInputs = [ pkg-config autoreconfHook ];
  buildInputs = [ glib expat libmicrohttpd ] ++
    lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ];

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