mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
8abb9b3a92
Without the change `stabber` fails to build on `staging-next` as: src/server/stanza.c: In function 'stanza_to_string': /nix/store/dlkvzm8kb7s8bhni6f23i1p2qcv8w4dq-glib-2.78.3-dev/include/glib-2.0/glib/gstring.h:74:5: error: ignoring return value of 'g_string_free_and_steal' declared with attribute 'warn_unused_result' [-Werror=unused-result] It happens due to blanket `-Werror` option. Disable it.
39 lines
991 B
Nix
39 lines
991 B
Nix
{ 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 ];
|
|
};
|
|
}
|