2021-01-19 06:50:56 +00:00
|
|
|
{ stdenv, lib, fetchurl, pkg-config
|
2021-02-12 22:56:15 +00:00
|
|
|
, bzip2, curlMinimal, expat, libarchive, xz, zlib, libuv, rhash
|
2019-02-18 22:41:03 +00:00
|
|
|
, buildPackages
|
2016-12-29 18:06:50 +00:00
|
|
|
# darwin attributes
|
2019-03-03 04:56:50 +00:00
|
|
|
, ps
|
2016-12-29 18:06:50 +00:00
|
|
|
, isBootstrap ? false
|
2017-06-01 21:23:56 +00:00
|
|
|
, useSharedLibraries ? (!isBootstrap && !stdenv.isCygwin)
|
2020-10-26 07:17:14 +00:00
|
|
|
, useOpenSSL ? !isBootstrap, openssl
|
2016-12-29 18:06:50 +00:00
|
|
|
, useNcurses ? false, ncurses
|
2021-06-22 03:06:27 +00:00
|
|
|
, withQt5 ? false, qtbase, wrapQtAppsHook
|
2021-05-27 20:53:40 +00:00
|
|
|
, buildDocs ? (!isBootstrap && (useNcurses || withQt5)), sphinx, texinfo
|
2012-04-23 15:47:31 +00:00
|
|
|
}:
|
2011-07-21 18:21:38 +00:00
|
|
|
|
2021-06-22 03:06:27 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-28 08:00:46 +00:00
|
|
|
pname = "cmake"
|
|
|
|
+ lib.optionalString isBootstrap "-boot"
|
|
|
|
+ lib.optionalString useNcurses "-cursesUI"
|
2021-05-12 09:13:47 +00:00
|
|
|
+ lib.optionalString withQt5 "-qt5UI";
|
2021-07-30 08:20:18 +00:00
|
|
|
version = "3.19.7";
|
2009-04-17 13:48:22 +00:00
|
|
|
|
2008-11-13 21:05:01 +00:00
|
|
|
src = fetchurl {
|
2021-07-20 21:57:01 +00:00
|
|
|
url = "https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}.tar.gz";
|
2021-07-30 08:20:18 +00:00
|
|
|
# compare with https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}-SHA-256.txt
|
|
|
|
sha256 = "sha256-WKFfDVagr8zDzFNxI0/Oc/zGyPnb13XYmOUQuDF1WI4=";
|
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.
|
|
|
|
./search-path.patch
|
|
|
|
|
2018-05-28 11:46:45 +00:00
|
|
|
# Don't depend on frameworks.
|
2018-08-12 23:51:01 +00:00
|
|
|
./application-services.patch
|
2018-08-13 01:16:02 +00:00
|
|
|
|
|
|
|
# Derived from https://github.com/libuv/libuv/commit/1a5d4f08238dd532c3718e210078de1186a5920d
|
|
|
|
./libuv-application-services.patch
|
2019-11-19 19:55:52 +00:00
|
|
|
|
2019-06-23 21:44:26 +00:00
|
|
|
] ++ lib.optional stdenv.isCygwin ./3.2.2-cygwin.patch;
|
2011-07-21 18:21:38 +00:00
|
|
|
|
2021-05-27 20:53:40 +00:00
|
|
|
outputs = [ "out" ]
|
|
|
|
++ lib.optionals buildDocs [ "man" "info" ];
|
2015-04-18 20:30:26 +00:00
|
|
|
setOutputFlags = false;
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2020-10-26 07:17:14 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2021-05-27 20:53:40 +00:00
|
|
|
nativeBuildInputs = [ setupHook pkg-config ]
|
2021-06-22 03:06:27 +00:00
|
|
|
++ lib.optionals buildDocs [ texinfo ]
|
|
|
|
++ lib.optionals withQt5 [ wrapQtAppsHook ];
|
2020-10-26 07:17:14 +00:00
|
|
|
|
|
|
|
buildInputs = []
|
2021-02-12 22:56:15 +00:00
|
|
|
++ lib.optionals useSharedLibraries [ bzip2 curlMinimal expat libarchive xz zlib libuv rhash ]
|
2020-10-26 07:17:14 +00:00
|
|
|
++ lib.optional useOpenSSL openssl
|
2019-06-23 21:44:26 +00:00
|
|
|
++ lib.optional useNcurses ncurses
|
|
|
|
++ lib.optional withQt5 qtbase;
|
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}
|
2020-04-28 04:08:48 +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"
|
2016-12-29 18:06:50 +00:00
|
|
|
'';
|
|
|
|
|
2018-05-13 15:31:24 +00:00
|
|
|
configureFlags = [
|
2019-06-23 21:44:26 +00:00
|
|
|
"--docdir=share/doc/${pname}${version}"
|
2018-05-15 19:24:22 +00:00
|
|
|
] ++ (if useSharedLibraries then [ "--no-system-jsoncpp" "--system-libs" ] else [ "--no-system-libs" ]) # FIXME: cleanup
|
2021-05-12 09:13:47 +00:00
|
|
|
++ lib.optional withQt5 "--qt-gui"
|
2021-05-27 20:53:40 +00:00
|
|
|
++ lib.optionals buildDocs [
|
|
|
|
"--sphinx-build=${sphinx}/bin/sphinx-build"
|
|
|
|
"--sphinx-man"
|
|
|
|
"--sphinx-info"
|
|
|
|
]
|
2020-05-12 22:16:03 +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"
|
|
|
|
]
|
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.
|
|
|
|
"-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"
|
2020-10-26 07:17:14 +00:00
|
|
|
|
|
|
|
"-DCMAKE_USE_OPENSSL=${if useOpenSSL then "ON" else "OFF"}"
|
2018-05-28 11:46:45 +00:00
|
|
|
# Avoid depending on frameworks.
|
2020-10-26 07:17:14 +00:00
|
|
|
"-DBUILD_CursesDialog=${if useNcurses then "ON" else "OFF"}"
|
|
|
|
];
|
2010-09-15 18:37:21 +00:00
|
|
|
|
2019-02-18 22:41:03 +00:00
|
|
|
# make install attempts to use the just-built cmake
|
2019-06-23 21:44:26 +00:00
|
|
|
preInstall = lib.optional (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-01-09 23:46:16 +00:00
|
|
|
# This isn't an autoconf configure script; triples are passed via
|
|
|
|
# CMAKE_SYSTEM_NAME, etc.
|
|
|
|
configurePlatforms = [ ];
|
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # fails
|
2018-01-09 23:46:16 +00:00
|
|
|
|
2019-06-23 21:44:26 +00:00
|
|
|
meta = with lib; {
|
2020-08-24 18:46:03 +00:00
|
|
|
homepage = "https://cmake.org/";
|
|
|
|
changelog = "https://cmake.org/cmake/help/v${lib.versions.majorMinor version}/"
|
|
|
|
+ "release/${lib.versions.majorMinor version}.html";
|
2010-09-15 18:37:21 +00:00
|
|
|
description = "Cross-Platform Makefile Generator";
|
2020-08-24 18:46:03 +00:00
|
|
|
longDescription = ''
|
|
|
|
CMake is an open-source, cross-platform family of tools designed to
|
|
|
|
build, test and package software. CMake is used to control the software
|
|
|
|
compilation process using simple platform and compiler independent
|
|
|
|
configuration files, and generate native makefiles and workspaces that
|
|
|
|
can be used in the compiler environment of your choice.
|
|
|
|
'';
|
2021-05-12 09:13:47 +00:00
|
|
|
platforms = platforms.all;
|
2018-01-17 05:13:23 +00:00
|
|
|
maintainers = with maintainers; [ ttuegel lnl7 ];
|
2018-08-06 14:14:24 +00:00
|
|
|
license = licenses.bsd3;
|
2010-09-15 18:37:21 +00:00
|
|
|
};
|
2021-06-22 03:06:27 +00:00
|
|
|
}
|