depot/pkgs/development/libraries/libcommuni/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

48 lines
1.2 KiB
Nix

{ lib, stdenv, fetchFromGitHub
, qtbase, qtdeclarative, qmake, which
}:
stdenv.mkDerivation rec {
pname = "libcommuni";
version = "3.7.0";
src = fetchFromGitHub {
owner = "communi";
repo = "libcommuni";
rev = "v${version}";
sha256 = "sha256-9eYJpmjW1J48RD6wVJOHmsAgTbauNeeCrXe076ufq1I=";
};
buildInputs = [ qtbase qtdeclarative ];
nativeBuildInputs = [ qmake which ];
enableParallelBuilding = true;
dontUseQmakeConfigure = true;
configureFlags = [ "-config" "release" ]
# Build mixes up dylibs/frameworks if one is not explicitly specified.
++ lib.optionals stdenv.hostPlatform.isDarwin [ "-config" "qt_framework" ];
dontWrapQtApps = true;
preConfigure = ''
sed -i -e 's|/bin/pwd|pwd|g' configure
'';
# The tests fail on darwin because of install_name if they run
# before the frameworks are installed.
doCheck = false;
doInstallCheck = true;
installCheckTarget = "check";
# Hack to avoid TMPDIR in RPATHs.
preFixup = "rm -rf lib";
meta = with lib; {
description = "Cross-platform IRC framework written with Qt";
homepage = "https://communi.github.io";
license = licenses.bsd3;
platforms = platforms.all;
maintainers = with maintainers; [ hrdinka ];
};
}