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
54 lines
887 B
Nix
54 lines
887 B
Nix
{
|
|
lib,
|
|
mkDerivation,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
qtbase,
|
|
qtmultimedia,
|
|
qtx11extras,
|
|
qttools,
|
|
qtwebengine,
|
|
libidn,
|
|
qca-qt5,
|
|
libXScrnSaver,
|
|
hunspell,
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "psi";
|
|
version = "1.5";
|
|
src = fetchFromGitHub {
|
|
owner = "psi-im";
|
|
repo = "psi";
|
|
rev = version;
|
|
sha256 = "hXDZODHl14kimRlMQ1XjISQ2kk9NS78axVN3U21wkuM=";
|
|
fetchSubmodules = true;
|
|
};
|
|
patches = [
|
|
./fix-cmake-hunspell-1.7.patch
|
|
];
|
|
nativeBuildInputs = [
|
|
cmake
|
|
qttools
|
|
];
|
|
buildInputs = [
|
|
qtbase
|
|
qtmultimedia
|
|
qtx11extras
|
|
qtwebengine
|
|
libidn
|
|
qca-qt5
|
|
libXScrnSaver
|
|
hunspell
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://psi-im.org";
|
|
description = "XMPP (Jabber) client";
|
|
mainProgram = "psi";
|
|
maintainers = [ maintainers.raskin ];
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|