Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
62 lines
1.2 KiB
Nix
62 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
openssl,
|
|
ncurses,
|
|
pkg-config,
|
|
glib,
|
|
loudmouth,
|
|
libotr,
|
|
gpgme,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mcabber";
|
|
version = "1.1.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://mcabber.com/files/mcabber-${version}.tar.bz2";
|
|
sha256 = "0q1i5acyghsmzas88qswvki8kkk2nfpr8zapgnxbcd3lwcxl38f4";
|
|
};
|
|
|
|
patches = [
|
|
# Pull upstream patch for ncurses-6.3.
|
|
(fetchpatch {
|
|
name = "ncurses-6.3.patch";
|
|
url = "https://github.com/McKael/mcabber/commit/5a0893d69023b77b7671731defbdca5d47731130.patch";
|
|
sha256 = "01bc23z0mva9l9jv587sq2r9w3diachgkmb9ad99hlzgj02fmq4v";
|
|
stripLen = 1;
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
openssl
|
|
ncurses
|
|
glib
|
|
loudmouth
|
|
libotr
|
|
gpgme
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-openssl=${openssl.dev}"
|
|
"--enable-modules"
|
|
"--enable-otr"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
homepage = "http://mcabber.com/";
|
|
description = "Small Jabber console client";
|
|
mainProgram = "mcabber";
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ pSub ];
|
|
platforms = with platforms; linux;
|
|
downloadPage = "http://mcabber.com/files/";
|
|
};
|
|
}
|