2022-06-21 05:03:11 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2022-12-12 01:21:24 +00:00
|
|
|
, fetchurl
|
2019-02-18 22:41:03 +00:00
|
|
|
, buildPackages
|
2022-06-21 05:03:11 +00:00
|
|
|
, bzip2
|
|
|
|
, curlMinimal
|
|
|
|
, expat
|
|
|
|
, libarchive
|
|
|
|
, libuv
|
|
|
|
, ncurses
|
|
|
|
, openssl
|
|
|
|
, pkg-config
|
2022-12-12 01:21:24 +00:00
|
|
|
, ps
|
2022-06-21 05:03:11 +00:00
|
|
|
, rhash
|
|
|
|
, sphinx
|
|
|
|
, texinfo
|
|
|
|
, xz
|
|
|
|
, zlib
|
2023-10-25 02:20:47 +00:00
|
|
|
, isBootstrap ? null
|
|
|
|
, isMinimalBuild ? (
|
|
|
|
if isBootstrap != null
|
|
|
|
then lib.warn
|
|
|
|
"isBootstrap argument is deprecated and will be removed; use isMinimalBuild instead"
|
|
|
|
isBootstrap
|
|
|
|
else false)
|
|
|
|
, useOpenSSL ? !isMinimalBuild
|
|
|
|
, useSharedLibraries ? (!isMinimalBuild && !stdenv.isCygwin)
|
2023-10-16 14:08:11 +00:00
|
|
|
, uiToolkits ? [] # can contain "ncurses" and/or "qt5"
|
2023-10-25 02:20:47 +00:00
|
|
|
, buildDocs ? !(isMinimalBuild || (uiToolkits == []))
|
|
|
|
, darwin
|
|
|
|
, libsForQt5
|
2012-04-23 15:47:31 +00:00
|
|
|
}:
|
2011-07-21 18:21:38 +00:00
|
|
|
|
2022-06-21 05:10:08 +00:00
|
|
|
let
|
2022-12-12 01:21:24 +00:00
|
|
|
inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
|
|
|
|
inherit (libsForQt5) qtbase wrapQtAppsHook;
|
2022-06-21 05:10:08 +00:00
|
|
|
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 == [];
|
2022-12-12 01:21:24 +00:00
|
|
|
# Minimal, bootstrap cmake does not have toolkits
|
2023-10-25 02:20:47 +00:00
|
|
|
assert isMinimalBuild -> (uiToolkits == []);
|
2023-06-10 15:59:24 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-06-28 08:00:46 +00:00
|
|
|
pname = "cmake"
|
2023-10-25 02:20:47 +00:00
|
|
|
+ lib.optionalString isMinimalBuild "-minimal"
|
2022-06-21 05:10:08 +00:00
|
|
|
+ lib.optionalString cursesUI "-cursesUI"
|
|
|
|
+ lib.optionalString qt5UI "-qt5UI";
|
2023-11-16 03:37:46 +00:00
|
|
|
version = "3.27.8";
|
2009-04-17 13:48:22 +00:00
|
|
|
|
2008-11-13 21:05:01 +00:00
|
|
|
src = fetchurl {
|
2023-06-10 15:59:24 +00:00
|
|
|
url = "https://cmake.org/files/v${lib.versions.majorMinor finalAttrs.version}/cmake-${finalAttrs.version}.tar.gz";
|
2023-11-16 03:37:46 +00:00
|
|
|
hash = "sha256-/s4kVj9peHD7uYLqi/F0gsnV+FXYyb8LgkY9dsno0Mw=";
|
2007-07-07 22:31:37 +00:00
|
|
|
};
|
2009-04-17 13:48:22 +00:00
|
|
|
|
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.
|
2022-06-23 01:11:09 +00:00
|
|
|
./001-search-path.diff
|
2018-05-28 11:46:45 +00:00
|
|
|
# Don't depend on frameworks.
|
2022-06-23 01:11:09 +00:00
|
|
|
./002-application-services.diff
|
2018-08-13 01:16:02 +00:00
|
|
|
# Derived from https://github.com/libuv/libuv/commit/1a5d4f08238dd532c3718e210078de1186a5920d
|
2022-06-23 01:11:09 +00:00
|
|
|
./003-libuv-application-services.diff
|
|
|
|
]
|
|
|
|
++ lib.optional stdenv.isCygwin ./004-cygwin.diff
|
2021-07-29 15:46:58 +00:00
|
|
|
# Derived from https://github.com/curl/curl/commit/31f631a142d855f069242f3e0c643beec25d1b51
|
2023-10-25 02:20:47 +00:00
|
|
|
++ lib.optional (stdenv.isDarwin && isMinimalBuild) ./005-remove-systemconfiguration-dep.diff
|
2021-09-11 14:11:42 +00:00
|
|
|
# On Darwin, always set CMAKE_SHARED_LIBRARY_RUNTIME_C_FLAG.
|
2022-06-23 01:11:09 +00:00
|
|
|
++ lib.optional stdenv.isDarwin ./006-darwin-always-set-runtime-c-flag.diff;
|
2011-07-21 18:21:38 +00:00
|
|
|
|
2022-06-21 05:03:11 +00:00
|
|
|
outputs = [ "out" ] ++ lib.optionals buildDocs [ "man" "info" ];
|
2015-04-18 20:30:26 +00:00
|
|
|
setOutputFlags = false;
|
|
|
|
|
2022-07-17 18:54:01 +00:00
|
|
|
setupHooks = [
|
|
|
|
./setup-hook.sh
|
|
|
|
./check-pc-files-hook.sh
|
|
|
|
];
|
2015-04-18 20:30:26 +00:00
|
|
|
|
2020-10-26 07:17:14 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2023-06-10 15:59:24 +00:00
|
|
|
nativeBuildInputs = finalAttrs.setupHooks ++ [
|
2022-06-21 05:03:11 +00:00
|
|
|
pkg-config
|
|
|
|
]
|
|
|
|
++ lib.optionals buildDocs [ texinfo ]
|
2022-06-21 05:10:08 +00:00
|
|
|
++ 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
|
2022-06-21 05:10:08 +00:00
|
|
|
++ lib.optional cursesUI ncurses
|
|
|
|
++ lib.optional qt5UI qtbase
|
2023-10-25 02:20:47 +00:00
|
|
|
++ lib.optional (stdenv.isDarwin && !isMinimalBuild) SystemConfiguration;
|
2010-09-15 18:37:21 +00:00
|
|
|
|
2019-06-23 21:44:26 +00:00
|
|
|
propagatedBuildInputs = lib.optional stdenv.isDarwin ps;
|
2015-04-07 02:48:44 +00:00
|
|
|
|
2016-12-29 18:06:50 +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
|
2020-04-28 04:08:48 +00:00
|
|
|
configureFlags="--parallel=''${NIX_BUILD_CORES:-1} CC=$CC_FOR_BUILD CXX=$CXX_FOR_BUILD $configureFlags"
|
2016-12-29 18:06:50 +00:00
|
|
|
'';
|
|
|
|
|
2023-10-16 15:13:22 +00:00
|
|
|
# The configuration script is not autoconf-based, although being similar;
|
|
|
|
# triples and other interesting info are passed via CMAKE_* environment
|
|
|
|
# variables and commandline switches
|
|
|
|
configurePlatforms = [ ];
|
|
|
|
|
2018-05-13 15:31:24 +00:00
|
|
|
configureFlags = [
|
2021-04-20 19:54:28 +00:00
|
|
|
"CXXFLAGS=-Wno-elaborated-enum-base"
|
2023-06-10 15:59:24 +00:00
|
|
|
"--docdir=share/doc/${finalAttrs.pname}-${finalAttrs.version}"
|
2022-06-21 05:03:11 +00:00
|
|
|
] ++ (if useSharedLibraries
|
2023-10-16 15:13:22 +00:00
|
|
|
then [
|
|
|
|
"--no-system-cppdap"
|
|
|
|
"--no-system-jsoncpp"
|
|
|
|
"--system-libs"
|
|
|
|
]
|
|
|
|
else [
|
|
|
|
"--no-system-libs"
|
|
|
|
]) # FIXME: cleanup
|
2022-06-21 05:10:08 +00:00
|
|
|
++ 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
|
|
|
]
|
|
|
|
++ [
|
2018-05-15 19:24:22 +00:00
|
|
|
"--"
|
2018-05-13 15:31:24 +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.
|
2023-10-16 14:08:11 +00:00
|
|
|
(lib.cmakeFeature "CMAKE_CXX_COMPILER" "${stdenv.cc.targetPrefix}c++")
|
|
|
|
(lib.cmakeFeature "CMAKE_C_COMPILER" "${stdenv.cc.targetPrefix}cc")
|
|
|
|
(lib.cmakeFeature "CMAKE_AR"
|
|
|
|
"${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar")
|
|
|
|
(lib.cmakeFeature "CMAKE_RANLIB"
|
|
|
|
"${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ranlib")
|
|
|
|
(lib.cmakeFeature "CMAKE_STRIP"
|
|
|
|
"${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}strip")
|
2020-10-26 07:17:14 +00:00
|
|
|
|
2023-10-16 14:08:11 +00:00
|
|
|
(lib.cmakeBool "CMAKE_USE_OPENSSL" useOpenSSL)
|
|
|
|
(lib.cmakeBool "BUILD_CursesDialog" cursesUI)
|
2020-10-26 07:17:14 +00:00
|
|
|
];
|
2010-09-15 18:37:21 +00:00
|
|
|
|
2023-11-17 22:44:18 +00:00
|
|
|
# `pkgsCross.musl64.cmake.override { stdenv = pkgsCross.musl64.llvmPackages_16.libcxxStdenv; }`
|
|
|
|
# fails with `The C++ compiler does not support C++11 (e.g. std::unique_ptr).`
|
|
|
|
# The cause is a compiler warning `warning: argument unused during compilation: '-pie' [-Wunused-command-line-argument]`
|
|
|
|
# interfering with the feature check.
|
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-unused-command-line-argument";
|
|
|
|
|
2019-02-18 22:41:03 +00:00
|
|
|
# make install attempts to use the just-built cmake
|
2021-08-18 00:14:20 +00:00
|
|
|
preInstall = lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2020-10-26 07:17:14 +00:00
|
|
|
sed -i 's|bin/cmake|${buildPackages.cmakeMinimal}/bin/cmake|g' Makefile
|
2019-02-18 22:41:03 +00:00
|
|
|
'';
|
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
dontUseCmakeConfigure = true;
|
2015-04-18 20:30:26 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # fails
|
2018-01-09 23:46:16 +00:00
|
|
|
|
2023-06-10 15:59:24 +00:00
|
|
|
meta = {
|
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
|
|
|
'';
|
2023-06-10 15:59:24 +00:00
|
|
|
changelog = "https://cmake.org/cmake/help/v${lib.versions.majorMinor finalAttrs.version}/release/${lib.versions.majorMinor finalAttrs.version}.html";
|
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [ ttuegel lnl7 AndersonTorres ];
|
|
|
|
platforms = lib.platforms.all;
|
2022-06-21 05:10:08 +00:00
|
|
|
broken = (qt5UI && stdenv.isDarwin);
|
2010-09-15 18:37:21 +00:00
|
|
|
};
|
2023-06-10 15:59:24 +00:00
|
|
|
})
|