nixpkgs/pkgs/misc/stabber/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

40 lines
1020 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";
mainProgram = "stabber";
homepage = "https://github.com/profanity-im/stabber";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ hschaeidt ];
};
}