nixpkgs/pkgs/development/tools/build-managers/cmake/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

171 lines
5.6 KiB
Nix
Raw Normal View History

2022-06-21 05:03:11 +00:00
{ lib
, stdenv
, buildPackages
2022-06-21 05:03:11 +00:00
, bzip2
, curlMinimal
, expat
, fetchurl
, libarchive
, libuv
, ncurses
, openssl
, pkg-config
, qtbase
, rhash
, sphinx
, texinfo
, wrapQtAppsHook
, xz
, zlib
, SystemConfiguration
, ps
, isBootstrap ? false
2022-06-21 05:03:11 +00:00
, useOpenSSL ? !isBootstrap
, useSharedLibraries ? (!isBootstrap && !stdenv.isCygwin)
, uiToolkits ? [] # can contain "ncurses" and/or "qt5"
, buildDocs ? !(isBootstrap || (uiToolkits == []))
}:
let
cursesUI = lib.elem "ncurses" uiToolkits;
qt5UI = lib.elem "qt5" uiToolkits;
in
# Accepts only "ncurses" and "qt5" as possible uiToolkits
assert lib.subtractLists [ "ncurses" "qt5" ] uiToolkits == [];
2021-06-22 03:06:27 +00:00
stdenv.mkDerivation rec {
2019-06-28 08:00:46 +00:00
pname = "cmake"
2021-07-30 07:51:43 +00:00
+ lib.optionalString isBootstrap "-boot"
+ lib.optionalString cursesUI "-cursesUI"
+ lib.optionalString qt5UI "-qt5UI";
2022-08-20 10:52:56 +00:00
version = "3.24.1";
src = fetchurl {
url = "https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}.tar.gz";
2022-08-20 10:52:56 +00:00
sha256 = "sha256-STHid6TbGoBfE7qnATp3V6DL/lt5MogpJccGHZ0fqCs=";
};
2018-08-12 23:51:01 +00:00
patches = [
# Don't search in non-Nix locations such as /usr, but do search in our libc.
./001-search-path.diff
# Don't depend on frameworks.
./002-application-services.diff
# Derived from https://github.com/libuv/libuv/commit/1a5d4f08238dd532c3718e210078de1186a5920d
./003-libuv-application-services.diff
]
++ lib.optional stdenv.isCygwin ./004-cygwin.diff
# Derived from https://github.com/curl/curl/commit/31f631a142d855f069242f3e0c643beec25d1b51
++ lib.optional (stdenv.isDarwin && isBootstrap) ./005-remove-systemconfiguration-dep.diff
# On Darwin, always set CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG.
++ lib.optional stdenv.isDarwin ./006-darwin-always-set-runtime-c-flag.diff;
2022-06-21 05:03:11 +00:00
outputs = [ "out" ] ++ lib.optionals buildDocs [ "man" "info" ];
setOutputFlags = false;
setupHooks = [
./setup-hook.sh
./check-pc-files-hook.sh
];
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = setupHooks ++ [
2022-06-21 05:03:11 +00:00
pkg-config
]
++ lib.optionals buildDocs [ texinfo ]
++ lib.optionals qt5UI [ wrapQtAppsHook ];
2022-06-21 05:03:11 +00:00
buildInputs = lib.optionals useSharedLibraries [
bzip2
curlMinimal
expat
libarchive
xz
zlib
libuv
rhash
]
++ lib.optional useOpenSSL openssl
++ lib.optional cursesUI ncurses
++ lib.optional qt5UI qtbase
2022-06-21 05:03:11 +00:00
++ lib.optional (stdenv.isDarwin && !isBootstrap) SystemConfiguration;
2019-06-23 21:44:26 +00:00
propagatedBuildInputs = lib.optional stdenv.isDarwin ps;
2015-04-07 02:48:44 +00:00
preConfigure = ''
fixCmakeFiles .
substituteInPlace Modules/Platform/UnixPaths.cmake \
2019-06-23 21:44:26 +00:00
--subst-var-by libc_bin ${lib.getBin stdenv.cc.libc} \
--subst-var-by libc_dev ${lib.getDev stdenv.cc.libc} \
--subst-var-by libc_lib ${lib.getLib stdenv.cc.libc}
2021-07-30 07:51:43 +00:00
# CC_FOR_BUILD and CXX_FOR_BUILD are used to bootstrap cmake
configureFlags="--parallel=''${NIX_BUILD_CORES:-1} CC=$CC_FOR_BUILD CXX=$CXX_FOR_BUILD $configureFlags"
'';
configureFlags = [
"CXXFLAGS=-Wno-elaborated-enum-base"
2019-06-23 21:44:26 +00:00
"--docdir=share/doc/${pname}${version}"
2022-06-21 05:03:11 +00:00
] ++ (if useSharedLibraries
then [ "--no-system-jsoncpp" "--system-libs" ]
else [ "--no-system-libs" ]) # FIXME: cleanup
++ lib.optional qt5UI "--qt-gui"
2021-07-30 07:51:43 +00:00
++ lib.optionals buildDocs [
"--sphinx-build=${sphinx}/bin/sphinx-build"
"--sphinx-info"
2022-06-21 05:03:11 +00:00
"--sphinx-man"
2021-07-30 07:51:43 +00:00
]
# Workaround https://gitlab.kitware.com/cmake/cmake/-/issues/20568
++ lib.optionals stdenv.hostPlatform.is32bit [
"CFLAGS=-D_FILE_OFFSET_BITS=64"
"CXXFLAGS=-D_FILE_OFFSET_BITS=64"
2022-06-21 05:03:11 +00:00
]
++ [
"--"
# We should set the proper `CMAKE_SYSTEM_NAME`.
# http://www.cmake.org/Wiki/CMake_Cross_Compiling
#
# Unfortunately cmake seems to expect absolute paths for ar, ranlib, and
# strip. Otherwise they are taken to be relative to the source root of the
# package being built.
"-DCMAKE_CXX_COMPILER=${stdenv.cc.targetPrefix}c++"
"-DCMAKE_C_COMPILER=${stdenv.cc.targetPrefix}cc"
2019-06-23 21:44:26 +00:00
"-DCMAKE_AR=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
"-DCMAKE_RANLIB=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ranlib"
"-DCMAKE_STRIP=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}strip"
"-DCMAKE_USE_OPENSSL=${if useOpenSSL then "ON" else "OFF"}"
# Avoid depending on frameworks.
"-DBUILD_CursesDialog=${if cursesUI then "ON" else "OFF"}"
];
# make install attempts to use the just-built cmake
preInstall = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
sed -i 's|bin/cmake|${buildPackages.cmakeMinimal}/bin/cmake|g' Makefile
'';
dontUseCmakeConfigure = true;
enableParallelBuilding = true;
# This isn't an autoconf configure script; triples are passed via
# CMAKE_SYSTEM_NAME, etc.
configurePlatforms = [ ];
doCheck = false; # fails
2019-06-23 21:44:26 +00:00
meta = with lib; {
2020-08-24 18:46:03 +00:00
homepage = "https://cmake.org/";
2022-06-21 05:03:11 +00:00
description = "Cross-platform, open-source build system generator";
2020-08-24 18:46:03 +00:00
longDescription = ''
2022-06-21 05:03:11 +00:00
CMake is an open-source, cross-platform family of tools designed to build,
test and package software. CMake is used to control the software
2020-08-24 18:46:03 +00:00
compilation process using simple platform and compiler independent
2022-06-21 05:03:11 +00:00
configuration files, and generate native makefiles and workspaces that can
be used in the compiler environment of your choice.
2020-08-24 18:46:03 +00:00
'';
2022-06-21 05:03:11 +00:00
changelog = "https://cmake.org/cmake/help/v${lib.versions.majorMinor version}/release/${lib.versions.majorMinor version}.html";
2018-08-06 14:14:24 +00:00
license = licenses.bsd3;
2022-06-21 05:20:12 +00:00
maintainers = with maintainers; [ ttuegel lnl7 AndersonTorres ];
2022-06-21 05:03:11 +00:00
platforms = platforms.all;
broken = (qt5UI && stdenv.isDarwin);
};
2021-06-22 03:06:27 +00:00
}