2019-11-26 21:45:58 +01:00
|
|
|
{ stdenv, lib, fetchurl, pkgconfig
|
2017-06-11 15:27:33 +02:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib, libuv, rhash
|
2019-02-18 23:41:03 +01:00
|
|
|
, buildPackages
|
2016-12-29 19:06:50 +01:00
|
|
|
# darwin attributes
|
2019-03-03 05:56:50 +01:00
|
|
|
, ps
|
2016-12-29 19:06:50 +01:00
|
|
|
, isBootstrap ? false
|
2017-06-01 23:23:56 +02:00
|
|
|
, useSharedLibraries ? (!isBootstrap && !stdenv.isCygwin)
|
2016-12-29 19:06:50 +01:00
|
|
|
, useNcurses ? false, ncurses
|
|
|
|
, useQt4 ? false, qt4
|
2017-09-04 00:54:34 +02:00
|
|
|
, withQt5 ? false, qtbase
|
2012-04-23 17:47:31 +02:00
|
|
|
}:
|
2011-07-21 20:21:38 +02:00
|
|
|
|
2017-09-04 00:54:34 +02:00
|
|
|
assert withQt5 -> useQt4 == false;
|
|
|
|
assert useQt4 -> withQt5 == false;
|
|
|
|
|
2008-11-13 22:05:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-28 10:00:46 +02:00
|
|
|
pname = "cmake"
|
|
|
|
+ lib.optionalString isBootstrap "-boot"
|
|
|
|
+ lib.optionalString useNcurses "-cursesUI"
|
|
|
|
+ lib.optionalString withQt5 "-qt5UI"
|
|
|
|
+ lib.optionalString useQt4 "-qt4UI";
|
2020-05-04 20:59:07 +02:00
|
|
|
version = "3.17.2";
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2008-11-13 22:05:01 +01:00
|
|
|
src = fetchurl {
|
2019-06-23 23:44:26 +02:00
|
|
|
url = "${meta.homepage}files/v${lib.versions.majorMinor version}/cmake-${version}.tar.gz";
|
2019-06-28 10:00:46 +02:00
|
|
|
# compare with https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}-SHA-256.txt
|
2020-05-04 20:59:07 +02:00
|
|
|
sha256 = "199srp8yfai51pcbpmfyc4s8vzrmh2dm91bp582hj2l29x634xzw";
|
2007-07-08 00:31:37 +02:00
|
|
|
};
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2018-08-13 01:51:01 +02:00
|
|
|
patches = [
|
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in our libc.
|
|
|
|
./search-path.patch
|
|
|
|
|
2018-05-28 13:46:45 +02:00
|
|
|
# Don't depend on frameworks.
|
2018-08-13 01:51:01 +02:00
|
|
|
./application-services.patch
|
2018-08-13 03:16:02 +02:00
|
|
|
|
|
|
|
# Derived from https://github.com/libuv/libuv/commit/1a5d4f08238dd532c3718e210078de1186a5920d
|
|
|
|
./libuv-application-services.patch
|
2019-11-19 20:55:52 +01:00
|
|
|
|
2019-06-23 23:44:26 +02:00
|
|
|
] ++ lib.optional stdenv.isCygwin ./3.2.2-cygwin.patch;
|
2011-07-21 20:21:38 +02:00
|
|
|
|
2016-05-04 15:23:39 +02:00
|
|
|
outputs = [ "out" ];
|
2015-04-18 22:30:26 +02:00
|
|
|
setOutputFlags = false;
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2015-03-22 23:00:46 +01:00
|
|
|
buildInputs =
|
2016-12-29 19:06:50 +01:00
|
|
|
[ setupHook pkgconfig ]
|
2019-06-23 23:44:26 +02:00
|
|
|
++ lib.optionals useSharedLibraries [ bzip2 curl expat libarchive xz zlib libuv rhash ]
|
|
|
|
++ lib.optional useNcurses ncurses
|
|
|
|
++ lib.optional useQt4 qt4
|
|
|
|
++ lib.optional withQt5 qtbase;
|
2010-09-15 20:37:21 +02:00
|
|
|
|
2019-02-18 23:41:03 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2019-06-23 23:44:26 +02:00
|
|
|
propagatedBuildInputs = lib.optional stdenv.isDarwin ps;
|
2015-04-07 04:48:44 +02:00
|
|
|
|
2016-12-29 19:06:50 +01:00
|
|
|
preConfigure = ''
|
|
|
|
fixCmakeFiles .
|
|
|
|
substituteInPlace Modules/Platform/UnixPaths.cmake \
|
2019-06-23 23:44:26 +02: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}
|
2016-12-29 19:06:50 +01:00
|
|
|
substituteInPlace Modules/FindCxxTest.cmake \
|
|
|
|
--replace "$""{PYTHON_EXECUTABLE}" ${stdenv.shell}
|
2019-02-18 23:41:03 +01:00
|
|
|
# BUILD_CC and BUILD_CXX are used to bootstrap cmake
|
|
|
|
configureFlags="--parallel=''${NIX_BUILD_CORES:-1} CC=$BUILD_CC CXX=$BUILD_CXX $configureFlags"
|
2016-12-29 19:06:50 +01:00
|
|
|
'';
|
|
|
|
|
2018-05-13 17:31:24 +02:00
|
|
|
configureFlags = [
|
2019-06-23 23:44:26 +02:00
|
|
|
"--docdir=share/doc/${pname}${version}"
|
2018-05-15 21:24:22 +02:00
|
|
|
] ++ (if useSharedLibraries then [ "--no-system-jsoncpp" "--system-libs" ] else [ "--no-system-libs" ]) # FIXME: cleanup
|
2019-06-23 23:44:26 +02:00
|
|
|
++ lib.optional (useQt4 || withQt5) "--qt-gui"
|
2018-05-15 21:24:22 +02:00
|
|
|
++ [
|
|
|
|
"--"
|
2018-05-13 17:31:24 +02: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 23:44:26 +02: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"
|
2018-05-28 13:46:45 +02:00
|
|
|
]
|
|
|
|
# Avoid depending on frameworks.
|
2019-06-23 23:44:26 +02:00
|
|
|
++ lib.optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
|
2010-09-15 20:37:21 +02:00
|
|
|
|
2019-02-18 23:41:03 +01:00
|
|
|
# make install attempts to use the just-built cmake
|
2019-06-23 23:44:26 +02:00
|
|
|
preInstall = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2019-02-18 23:41:03 +01:00
|
|
|
sed -i 's|bin/cmake|${buildPackages.cmake}/bin/cmake|g' Makefile
|
|
|
|
'';
|
|
|
|
|
2012-01-20 16:10:28 +01:00
|
|
|
dontUseCmakeConfigure = true;
|
2015-04-18 22:30:26 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-01-10 00:46:16 +01:00
|
|
|
# This isn't an autoconf configure script; triples are passed via
|
|
|
|
# CMAKE_SYSTEM_NAME, etc.
|
|
|
|
configurePlatforms = [ ];
|
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails
|
2018-01-10 00:46:16 +01:00
|
|
|
|
2019-06-23 23:44:26 +02:00
|
|
|
meta = with lib; {
|
2020-03-06 07:14:36 +01:00
|
|
|
homepage = "http://www.cmake.org/";
|
2010-09-15 20:37:21 +02:00
|
|
|
description = "Cross-Platform Makefile Generator";
|
2015-04-18 22:30:26 +02:00
|
|
|
platforms = if useQt4 then qt4.meta.platforms else platforms.all;
|
2018-01-17 06:13:23 +01:00
|
|
|
maintainers = with maintainers; [ ttuegel lnl7 ];
|
2018-08-06 16:14:24 +02:00
|
|
|
license = licenses.bsd3;
|
2010-09-15 20:37:21 +02:00
|
|
|
};
|
2007-07-08 00:31:37 +02:00
|
|
|
}
|