2015-04-18 10:00:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2017-06-11 14:27:33 +01:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib, libuv, rhash
|
2016-12-29 18:06:50 +00:00
|
|
|
# darwin attributes
|
|
|
|
, ps
|
|
|
|
, isBootstrap ? false
|
2017-06-01 22:23:56 +01:00
|
|
|
, useSharedLibraries ? (!isBootstrap && !stdenv.isCygwin)
|
2016-12-29 18:06:50 +00:00
|
|
|
, useNcurses ? false, ncurses
|
|
|
|
, useQt4 ? false, qt4
|
2012-04-23 16:47:31 +01:00
|
|
|
}:
|
2011-07-21 19:21:38 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2007-07-07 23:31:37 +01:00
|
|
|
|
2010-10-02 06:24:39 +01:00
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
2017-09-03 22:59:58 +01:00
|
|
|
majorVersion = "3.9";
|
|
|
|
minorVersion = "1";
|
2010-10-02 06:24:39 +01:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
2011-07-21 19:21:38 +01:00
|
|
|
|
2008-11-13 21:05:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-29 18:06:50 +00:00
|
|
|
name = "cmake-${os isBootstrap "boot-"}${os useNcurses "cursesUI-"}${os useQt4 "qt4UI-"}${version}";
|
2009-02-13 14:43:01 +00:00
|
|
|
|
2010-10-02 06:24:39 +01:00
|
|
|
inherit majorVersion;
|
2009-04-17 14:48:22 +01:00
|
|
|
|
2008-11-13 21:05:01 +00:00
|
|
|
src = fetchurl {
|
2010-10-02 06:24:39 +01:00
|
|
|
url = "${meta.homepage}files/v${majorVersion}/cmake-${version}.tar.gz";
|
2017-09-03 22:59:58 +01:00
|
|
|
# from https://cmake.org/files/v3.9/cmake-3.9.1-SHA-256.txt
|
|
|
|
sha256 = "d768ee83d217f91bb597b3ca2ac663da7a8603c97e1f1a5184bc01e0ad2b12bb";
|
2007-07-07 23:31:37 +01:00
|
|
|
};
|
2009-04-17 14:48:22 +01:00
|
|
|
|
2016-12-29 18:06:50 +00:00
|
|
|
prePatch = optionalString (!useSharedLibraries) ''
|
|
|
|
substituteInPlace Utilities/cmlibarchive/CMakeLists.txt \
|
|
|
|
--replace '"-framework CoreServices"' '""'
|
|
|
|
'';
|
|
|
|
|
2016-10-13 13:58:54 +01:00
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in our libc.
|
2017-09-03 22:59:58 +01:00
|
|
|
patches = [ ./search-path-3.9.patch ]
|
2015-11-29 07:56:40 +00:00
|
|
|
++ optional stdenv.isCygwin ./3.2.2-cygwin.patch;
|
2011-07-21 19:21:38 +01:00
|
|
|
|
2016-05-04 14:23:39 +01:00
|
|
|
outputs = [ "out" ];
|
2015-04-18 21:30:26 +01:00
|
|
|
setOutputFlags = false;
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2015-03-22 22:00:46 +00:00
|
|
|
buildInputs =
|
2016-12-29 18:06:50 +00:00
|
|
|
[ setupHook pkgconfig ]
|
2017-06-11 14:27:33 +01:00
|
|
|
++ optionals useSharedLibraries [ bzip2 curl expat libarchive xz zlib libuv rhash ]
|
2011-02-09 21:08:53 +00:00
|
|
|
++ optional useNcurses ncurses
|
|
|
|
++ optional useQt4 qt4;
|
2010-09-15 19:37:21 +01:00
|
|
|
|
2016-12-29 18:06:50 +00:00
|
|
|
propagatedBuildInputs = optional stdenv.isDarwin ps;
|
2015-04-07 03:48:44 +01:00
|
|
|
|
2016-12-29 18:06:50 +00: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
|
2015-05-15 22:31:40 +01:00
|
|
|
++ optional useQt4 "--qt-gui"
|
2016-12-29 18:06:50 +00:00
|
|
|
++ optionals (!useNcurses) [ "--" "-DBUILD_CursesDialog=OFF" ];
|
2010-09-15 19:37:21 +01:00
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
dontUseCmakeConfigure = true;
|
2015-04-18 21:30:26 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2010-09-15 19:37:21 +01:00
|
|
|
homepage = http://www.cmake.org/;
|
|
|
|
description = "Cross-Platform Makefile Generator";
|
2015-04-18 21:30:26 +01:00
|
|
|
platforms = if useQt4 then qt4.meta.platforms else platforms.all;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ mornfall ttuegel lnl7 ];
|
2010-09-15 19:37:21 +01:00
|
|
|
};
|
2007-07-07 23:31:37 +01:00
|
|
|
}
|