2018-07-05 01:03:59 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig
|
2017-06-11 15:27:33 +02:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib, libuv, rhash
|
2018-05-20 01:27:38 +02:00
|
|
|
, majorVersion ? "3.11"
|
2016-12-29 19:06:50 +01:00
|
|
|
# darwin attributes
|
|
|
|
, ps
|
|
|
|
, 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;
|
|
|
|
|
2011-07-21 20:21:38 +02:00
|
|
|
with stdenv.lib;
|
2007-07-08 00:31:37 +02:00
|
|
|
|
2018-01-27 09:10:36 +01:00
|
|
|
with (
|
|
|
|
{
|
2018-05-20 01:27:38 +02:00
|
|
|
"3.11" = {
|
|
|
|
minorVersion = "2";
|
|
|
|
sha256 = "0j2jpx94lnqx5w59i9xihl56hf6ghk04438rqhh7lk1bryxj5g2y";
|
|
|
|
};
|
2018-01-27 09:10:36 +01:00
|
|
|
"3.10" = {
|
|
|
|
minorVersion = "2";
|
|
|
|
sha256 = "80d0faad4ab56de07aa21a7fc692c88c4ce6156d42b0579c6962004a70a3218b";
|
|
|
|
};
|
|
|
|
"3.9" = {
|
|
|
|
minorVersion = "6";
|
|
|
|
sha256 = "7410851a783a41b521214ad987bb534a7e4a65e059651a2514e6ebfc8f46b218";
|
|
|
|
};
|
|
|
|
|
|
|
|
}.${majorVersion}
|
|
|
|
or (abort ''Unsupported configuration for cmake: majorVersion = "${majorVersion}";'')
|
|
|
|
);
|
|
|
|
|
2010-10-02 07:24:39 +02:00
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
2011-07-21 20:21:38 +02:00
|
|
|
|
2008-11-13 22:05:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-09-04 00:54:34 +02:00
|
|
|
name = "cmake-${os isBootstrap "boot-"}${os useNcurses "cursesUI-"}${os withQt5 "qt5UI-"}${os useQt4 "qt4UI-"}${version}";
|
2009-02-13 15:43:01 +01:00
|
|
|
|
2010-10-02 07:24:39 +02:00
|
|
|
inherit majorVersion;
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2008-11-13 22:05:01 +01:00
|
|
|
src = fetchurl {
|
2010-10-02 07:24:39 +02:00
|
|
|
url = "${meta.homepage}files/v${majorVersion}/cmake-${version}.tar.gz";
|
2018-01-21 11:59:12 +01:00
|
|
|
# from https://cmake.org/files/v3.10/cmake-3.10.2-SHA-256.txt
|
2018-01-27 09:10:36 +01:00
|
|
|
inherit sha256;
|
2007-07-08 00:31:37 +02:00
|
|
|
};
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2016-12-29 19:06:50 +01:00
|
|
|
prePatch = optionalString (!useSharedLibraries) ''
|
|
|
|
substituteInPlace Utilities/cmlibarchive/CMakeLists.txt \
|
|
|
|
--replace '"-framework CoreServices"' '""'
|
|
|
|
'';
|
|
|
|
|
2016-10-13 14:58:54 +02:00
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in our libc.
|
2017-09-03 23:59:58 +02:00
|
|
|
patches = [ ./search-path-3.9.patch ]
|
2018-07-05 01:03:59 +02:00
|
|
|
++ optional (versionOlder version "3.12") (fetchpatch {
|
|
|
|
name = "cmake-3.11-libuv-1.21.patch";
|
|
|
|
url = https://gitlab.kitware.com/cmake/cmake/commit/889033b5c6847cf1f7bd789384405d59dc333bf6.patch;
|
|
|
|
sha256 = "0683zbyb3bicaxqzrj4wgdan6x08k30m20kkmpjvw30nr6a8r6xq";
|
|
|
|
})
|
2018-05-28 13:46:45 +02:00
|
|
|
# Don't depend on frameworks.
|
2018-06-11 03:30:23 +02:00
|
|
|
++ optional (useSharedLibraries && majorVersion == "3.11") ./application-services.patch # TODO: remove conditional
|
2015-11-29 08:56:40 +01:00
|
|
|
++ 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 ]
|
2017-06-11 15:27:33 +02:00
|
|
|
++ optionals useSharedLibraries [ bzip2 curl expat libarchive xz zlib libuv rhash ]
|
2011-02-09 22:08:53 +01:00
|
|
|
++ optional useNcurses ncurses
|
2017-09-04 00:54:34 +02:00
|
|
|
++ optional useQt4 qt4
|
|
|
|
++ optional withQt5 qtbase;
|
2010-09-15 20:37:21 +02:00
|
|
|
|
2016-12-29 19:06:50 +01:00
|
|
|
propagatedBuildInputs = 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 \
|
|
|
|
--subst-var-by libc_bin ${getBin stdenv.cc.libc} \
|
|
|
|
--subst-var-by libc_dev ${getDev stdenv.cc.libc} \
|
|
|
|
--subst-var-by libc_lib ${getLib stdenv.cc.libc}
|
|
|
|
substituteInPlace Modules/FindCxxTest.cmake \
|
|
|
|
--replace "$""{PYTHON_EXECUTABLE}" ${stdenv.shell}
|
|
|
|
configureFlags="--parallel=''${NIX_BUILD_CORES:-1} $configureFlags"
|
|
|
|
'';
|
|
|
|
|
2018-05-13 17:31:24 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--docdir=share/doc/${name}"
|
2018-05-15 21:24:22 +02:00
|
|
|
] ++ (if useSharedLibraries then [ "--no-system-jsoncpp" "--system-libs" ] else [ "--no-system-libs" ]) # FIXME: cleanup
|
|
|
|
++ optional (useQt4 || withQt5) "--qt-gui"
|
|
|
|
++ [
|
|
|
|
"--"
|
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"
|
|
|
|
"-DCMAKE_AR=${getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
|
|
|
|
"-DCMAKE_RANLIB=${getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ranlib"
|
|
|
|
"-DCMAKE_STRIP=${getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}strip"
|
2018-05-28 13:46:45 +02:00
|
|
|
]
|
|
|
|
# Avoid depending on frameworks.
|
|
|
|
++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
|
2010-09-15 20:37:21 +02:00
|
|
|
|
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
|
|
|
|
2015-04-18 22:30:26 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-15 20:37:21 +02:00
|
|
|
homepage = http://www.cmake.org/;
|
|
|
|
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 ];
|
2010-09-15 20:37:21 +02:00
|
|
|
};
|
2007-07-08 00:31:37 +02:00
|
|
|
}
|