mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 02:23:54 +00:00
e0464e4788
In preparation for the deprecation of `stdenv.isX`. These shorthands are not conducive to cross-compilation because they hide the platforms. Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way One example of why this is bad and especially affects compiler packages https://www.github.com/NixOS/nixpkgs/pull/343059 There are too many files to go through manually but a treewide should get users thinking when they see a `hostPlatform.isX` in a place where it doesn't make sense. ``` fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is" fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is" fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is" ```
49 lines
1.2 KiB
Nix
49 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 ];
|
|
};
|
|
}
|