112 lines
3.6 KiB
Nix
112 lines
3.6 KiB
Nix
{ stdenv, fetchurl, pkgconfig
|
|
, bzip2, curl, expat, libarchive, xz, zlib, libuv, rhash
|
|
, majorVersion ? "3.10"
|
|
# darwin attributes
|
|
, ps
|
|
, isBootstrap ? false
|
|
, useSharedLibraries ? (!isBootstrap && !stdenv.isCygwin)
|
|
, useNcurses ? false, ncurses
|
|
, useQt4 ? false, qt4
|
|
, withQt5 ? false, qtbase
|
|
}:
|
|
|
|
assert withQt5 -> useQt4 == false;
|
|
assert useQt4 -> withQt5 == false;
|
|
|
|
with stdenv.lib;
|
|
|
|
with (
|
|
{
|
|
"3.10" = {
|
|
minorVersion = "2";
|
|
sha256 = "80d0faad4ab56de07aa21a7fc692c88c4ce6156d42b0579c6962004a70a3218b";
|
|
};
|
|
"3.9" = {
|
|
minorVersion = "6";
|
|
sha256 = "7410851a783a41b521214ad987bb534a7e4a65e059651a2514e6ebfc8f46b218";
|
|
};
|
|
|
|
}.${majorVersion}
|
|
or (abort ''Unsupported configuration for cmake: majorVersion = "${majorVersion}";'')
|
|
);
|
|
|
|
let
|
|
os = stdenv.lib.optionalString;
|
|
version = "${majorVersion}.${minorVersion}";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cmake-${os isBootstrap "boot-"}${os useNcurses "cursesUI-"}${os withQt5 "qt5UI-"}${os useQt4 "qt4UI-"}${version}";
|
|
|
|
inherit majorVersion;
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}files/v${majorVersion}/cmake-${version}.tar.gz";
|
|
# from https://cmake.org/files/v3.10/cmake-3.10.2-SHA-256.txt
|
|
inherit sha256;
|
|
};
|
|
|
|
prePatch = optionalString (!useSharedLibraries) ''
|
|
substituteInPlace Utilities/cmlibarchive/CMakeLists.txt \
|
|
--replace '"-framework CoreServices"' '""'
|
|
'';
|
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in our libc.
|
|
patches = [ ./search-path-3.9.patch ]
|
|
++ optional stdenv.isCygwin ./3.2.2-cygwin.patch;
|
|
|
|
outputs = [ "out" ];
|
|
setOutputFlags = false;
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
buildInputs =
|
|
[ setupHook pkgconfig ]
|
|
++ optionals useSharedLibraries [ bzip2 curl expat libarchive xz zlib libuv rhash ]
|
|
++ optional useNcurses ncurses
|
|
++ optional useQt4 qt4
|
|
++ optional withQt5 qtbase;
|
|
|
|
propagatedBuildInputs = optional stdenv.isDarwin ps;
|
|
|
|
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
|
|
++ optional (useQt4 || withQt5) "--qt-gui"
|
|
++ ["--"]
|
|
++ optionals (!useNcurses) [ "-DBUILD_CursesDialog=OFF" ]
|
|
++ optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
"-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"
|
|
# TODO: Why are ar and friends not provided by the bintools wrapper?
|
|
];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
enableParallelBuilding = true;
|
|
|
|
# This isn't an autoconf configure script; triples are passed via
|
|
# CMAKE_SYSTEM_NAME, etc.
|
|
configurePlatforms = [ ];
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.cmake.org/;
|
|
description = "Cross-Platform Makefile Generator";
|
|
platforms = if useQt4 then qt4.meta.platforms else platforms.all;
|
|
maintainers = with maintainers; [ ttuegel lnl7 ];
|
|
};
|
|
}
|