2015-04-18 11:00:58 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig
|
2015-05-13 18:16:22 +02:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib
|
2011-03-25 13:55:29 +01:00
|
|
|
, useNcurses ? false, ncurses, useQt4 ? false, qt4
|
2015-04-07 04:48:44 +02:00
|
|
|
, wantPS ? false, ps ? null
|
2012-04-23 17:47:31 +02:00
|
|
|
}:
|
2011-07-21 20:21:38 +02:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2007-07-08 00:31:37 +02:00
|
|
|
|
2015-04-07 04:48:44 +02:00
|
|
|
assert wantPS -> (ps != null);
|
|
|
|
|
2010-10-02 07:24:39 +02:00
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
2015-11-14 00:55:44 +01:00
|
|
|
majorVersion = "3.4";
|
2016-01-31 19:33:27 +01:00
|
|
|
minorVersion = "3";
|
2010-10-02 07:24:39 +02:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
2011-07-21 20:21:38 +02:00
|
|
|
|
2008-11-13 22:05:01 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-02 07:24:39 +02:00
|
|
|
name = "cmake-${os useNcurses "cursesUI-"}${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";
|
2016-01-31 19:33:27 +01:00
|
|
|
sha256 = "1yl0z422gr7zfc638chifv343vx0ig5gasvrh7nzf7b15488qgxp";
|
2007-07-08 00:31:37 +02:00
|
|
|
};
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2011-07-21 20:21:38 +02:00
|
|
|
patches =
|
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in
|
2015-03-22 23:00:46 +01:00
|
|
|
# Nixpkgs' Glibc.
|
2015-11-29 08:56:40 +01:00
|
|
|
optional (stdenv ? glibc) ./search-path-3.2.patch
|
|
|
|
++ 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 =
|
2015-04-18 22:30:26 +02:00
|
|
|
[ setupHook pkgconfig bzip2 curl expat libarchive xz zlib ]
|
2011-02-09 22:08:53 +01:00
|
|
|
++ optional useNcurses ncurses
|
|
|
|
++ optional useQt4 qt4;
|
2010-09-15 20:37:21 +02:00
|
|
|
|
2015-04-07 04:48:44 +02:00
|
|
|
propagatedBuildInputs = optional wantPS ps;
|
|
|
|
|
2015-04-18 22:30:26 +02:00
|
|
|
preConfigure = with stdenv; optionalString (stdenv ? glibc)
|
|
|
|
''
|
|
|
|
fixCmakeFiles .
|
|
|
|
substituteInPlace Modules/Platform/UnixPaths.cmake \
|
2016-04-14 18:00:39 +02:00
|
|
|
--subst-var-by glibc_bin ${getBin glibc} \
|
|
|
|
--subst-var-by glibc_dev ${getDev glibc} \
|
|
|
|
--subst-var-by glibc_lib ${getLib glibc}
|
2016-08-01 17:22:40 +02:00
|
|
|
substituteInPlace Modules/FindCxxTest.cmake \
|
|
|
|
--replace "$""{PYTHON_EXECUTABLE}" ${stdenv.shell}
|
2015-04-18 22:30:26 +02:00
|
|
|
'';
|
2010-09-15 20:37:21 +02:00
|
|
|
configureFlags =
|
2016-05-04 15:23:39 +02:00
|
|
|
[ "--docdir=share/doc/${name}"
|
2015-05-13 18:16:22 +02:00
|
|
|
"--no-system-jsoncpp"
|
2015-03-22 23:00:46 +01:00
|
|
|
]
|
2014-10-29 23:44:53 +01:00
|
|
|
++ optional (!stdenv.isCygwin) "--system-libs"
|
2015-05-15 23:31:40 +02:00
|
|
|
++ optional useQt4 "--qt-gui"
|
|
|
|
++ ["--"]
|
|
|
|
++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
|
2010-09-15 20:37:21 +02:00
|
|
|
|
2012-01-20 16:10:28 +01:00
|
|
|
dontUseCmakeConfigure = true;
|
2011-07-21 20:21:38 +02:00
|
|
|
|
2015-04-18 22:30:26 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
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;
|
|
|
|
maintainers = with maintainers; [ urkud mornfall ttuegel ];
|
2010-09-15 20:37:21 +02:00
|
|
|
};
|
2007-07-08 00:31:37 +02:00
|
|
|
}
|