2015-04-18 10:00:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2016-12-20 15:20:08 +00:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib, libuv
|
2011-03-25 12:55:29 +00:00
|
|
|
, useNcurses ? false, ncurses, useQt4 ? false, qt4
|
2015-04-07 03:48:44 +01:00
|
|
|
, wantPS ? false, ps ? null
|
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
|
|
|
|
2015-04-07 03:48:44 +01:00
|
|
|
assert wantPS -> (ps != null);
|
2016-10-13 13:58:54 +01:00
|
|
|
assert stdenv ? cc;
|
|
|
|
assert stdenv.cc ? libc;
|
2015-04-07 03:48:44 +01:00
|
|
|
|
2010-10-02 06:24:39 +01:00
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
2016-12-20 15:20:08 +00:00
|
|
|
majorVersion = "3.7";
|
|
|
|
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 {
|
2010-10-02 06:24:39 +01:00
|
|
|
name = "cmake-${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";
|
2016-12-20 15:20:08 +00:00
|
|
|
# from https://cmake.org/files/v3.7/cmake-3.7.1-SHA-256.txt
|
|
|
|
sha256 = "449a5bce64dbd4d5b9517ebd1a1248ed197add6ad27934478976fd5f1f9330e1";
|
2007-07-07 23:31:37 +01:00
|
|
|
};
|
2009-04-17 14:48:22 +01:00
|
|
|
|
2016-10-13 13:58:54 +01:00
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in our libc.
|
|
|
|
patches = [ ./search-path-3.2.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-20 15:20:08 +00:00
|
|
|
[ setupHook pkgconfig bzip2 curl expat libarchive xz zlib libuv ]
|
2011-02-09 21:08:53 +00:00
|
|
|
++ optional useNcurses ncurses
|
|
|
|
++ optional useQt4 qt4;
|
2010-09-15 19:37:21 +01:00
|
|
|
|
2015-04-07 03:48:44 +01:00
|
|
|
propagatedBuildInputs = optional wantPS ps;
|
|
|
|
|
2016-10-13 13:58:54 +01:00
|
|
|
preConfigure = with stdenv; ''
|
2015-04-18 21:30:26 +01:00
|
|
|
fixCmakeFiles .
|
|
|
|
substituteInPlace Modules/Platform/UnixPaths.cmake \
|
2016-10-13 13:58:54 +01:00
|
|
|
--subst-var-by libc_bin ${getBin cc.libc} \
|
|
|
|
--subst-var-by libc_dev ${getDev cc.libc} \
|
|
|
|
--subst-var-by libc_lib ${getLib cc.libc}
|
2016-08-01 16:22:40 +01:00
|
|
|
substituteInPlace Modules/FindCxxTest.cmake \
|
|
|
|
--replace "$""{PYTHON_EXECUTABLE}" ${stdenv.shell}
|
2016-10-13 14:07:58 +01:00
|
|
|
configureFlags="--parallel=''${NIX_BUILD_CORES:-1} $configureFlags"
|
2015-04-18 21:30:26 +01:00
|
|
|
'';
|
2010-09-15 19:37:21 +01:00
|
|
|
configureFlags =
|
2016-05-04 14:23:39 +01:00
|
|
|
[ "--docdir=share/doc/${name}"
|
2015-05-13 17:16:22 +01:00
|
|
|
"--no-system-jsoncpp"
|
2015-03-22 22:00:46 +00:00
|
|
|
]
|
2014-10-29 22:44:53 +00:00
|
|
|
++ optional (!stdenv.isCygwin) "--system-libs"
|
2015-05-15 22:31:40 +01:00
|
|
|
++ optional useQt4 "--qt-gui"
|
|
|
|
++ ["--"]
|
|
|
|
++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
|
2010-09-15 19:37:21 +01:00
|
|
|
|
2012-01-20 15:10:28 +00:00
|
|
|
dontUseCmakeConfigure = true;
|
2011-07-21 19:21:38 +01:00
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ urkud mornfall ttuegel ];
|
2010-09-15 19:37:21 +01:00
|
|
|
};
|
2007-07-07 23:31:37 +01:00
|
|
|
}
|