2015-04-18 11:00:58 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2017-06-11 15:27:33 +02:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib, libuv, rhash
|
2018-01-27 09:10:36 +01:00
|
|
|
, majorVersion ? "3.10"
|
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 (
|
|
|
|
{
|
|
|
|
"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 ]
|
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"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [ "--docdir=share/doc/${name}" ]
|
|
|
|
++ (if useSharedLibraries then [ "--no-system-jsoncpp" "--system-libs" ] else [ "--no-system-libs" ]) # FIXME: cleanup
|
2017-09-04 00:54:34 +02:00
|
|
|
++ optional (useQt4 || withQt5) "--qt-gui"
|
2018-01-10 00:46:16 +01:00
|
|
|
++ ["--"]
|
|
|
|
++ optionals (!useNcurses) [ "-DBUILD_CursesDialog=OFF" ]
|
|
|
|
++ optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
2018-02-13 19:39:34 +01:00
|
|
|
"-DCMAKE_CXX_COMPILER=${stdenv.cc.targetPrefix}c++"
|
|
|
|
"-DCMAKE_C_COMPILER=${stdenv.cc.targetPrefix}cc"
|
2018-01-10 00:46:16 +01:00
|
|
|
"-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"
|
|
|
|
# TODO: Why are ar and friends not provided by the bintools wrapper?
|
|
|
|
];
|
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 = [ ];
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|