2015-03-22 15:00:46 -07:00
|
|
|
{ stdenv, fetchurl
|
2015-05-13 09:16:22 -07:00
|
|
|
, bzip2, curl, expat, libarchive, xz, zlib
|
2015-03-22 15:00:46 -07:00
|
|
|
, useNcurses ? false, ncurses, useQt4 ? false, qt4
|
2015-04-06 19:48:44 -07:00
|
|
|
, wantPS ? false, ps ? null
|
2012-04-23 08:47:31 -07:00
|
|
|
}:
|
2011-07-21 11:21:38 -07:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2007-07-07 15:31:37 -07:00
|
|
|
|
2015-04-06 19:48:44 -07:00
|
|
|
assert wantPS -> (ps != null);
|
|
|
|
|
2010-10-01 22:24:39 -07:00
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
2015-11-13 15:55:44 -08:00
|
|
|
majorVersion = "3.4";
|
|
|
|
minorVersion = "0";
|
2010-10-01 22:24:39 -07:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
2011-07-21 11:21:38 -07:00
|
|
|
|
2008-11-13 13:05:01 -08:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-01 22:24:39 -07:00
|
|
|
name = "cmake-${os useNcurses "cursesUI-"}${os useQt4 "qt4UI-"}${version}";
|
2009-02-13 06:43:01 -08:00
|
|
|
|
2010-10-01 22:24:39 -07:00
|
|
|
inherit majorVersion;
|
2009-04-17 06:48:22 -07:00
|
|
|
|
2008-11-13 13:05:01 -08:00
|
|
|
src = fetchurl {
|
2010-10-01 22:24:39 -07:00
|
|
|
url = "${meta.homepage}files/v${majorVersion}/cmake-${version}.tar.gz";
|
2015-11-13 15:55:44 -08:00
|
|
|
sha256 = "1shwim3gfdybjx9f11ykxz5l09rh58vmvz8ip76q3i76mkv2pf55";
|
2007-07-07 15:31:37 -07:00
|
|
|
};
|
2009-04-17 06:48:22 -07:00
|
|
|
|
2013-06-22 04:58:30 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-07-21 11:21:38 -07:00
|
|
|
patches =
|
|
|
|
# Don't search in non-Nix locations such as /usr, but do search in
|
2015-03-22 15:00:46 -07:00
|
|
|
# Nixpkgs' Glibc.
|
2015-03-22 15:03:57 -07:00
|
|
|
optional (stdenv ? glibc) ./search-path-3.2.patch ++
|
2014-03-11 22:42:05 -07:00
|
|
|
optional (stdenv ? cross) (fetchurl {
|
|
|
|
name = "fix-darwin-cross-compile.patch";
|
|
|
|
url = "http://public.kitware.com/Bug/file_download.php?"
|
|
|
|
+ "file_id=4981&type=bug";
|
|
|
|
sha256 = "16acmdr27adma7gs9rs0dxdiqppm15vl3vv3agy7y8s94wyh4ybv";
|
2015-06-10 05:08:12 -07:00
|
|
|
}) ++ stdenv.lib.optional stdenv.isCygwin ./3.2.2-cygwin.patch;
|
2011-07-21 11:21:38 -07:00
|
|
|
|
2015-03-22 15:00:46 -07:00
|
|
|
buildInputs =
|
|
|
|
[ bzip2 curl expat libarchive xz zlib ]
|
2011-02-09 13:08:53 -08:00
|
|
|
++ optional useNcurses ncurses
|
|
|
|
++ optional useQt4 qt4;
|
2010-09-15 11:37:21 -07:00
|
|
|
|
2015-04-06 19:48:44 -07:00
|
|
|
propagatedBuildInputs = optional wantPS ps;
|
|
|
|
|
2010-09-15 11:37:21 -07:00
|
|
|
CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" buildInputs;
|
2015-03-22 15:00:46 -07:00
|
|
|
|
2010-09-15 11:37:21 -07:00
|
|
|
configureFlags =
|
2015-06-01 11:08:43 -07:00
|
|
|
[ "--docdir=/share/doc/${name}"
|
2015-03-22 15:00:46 -07:00
|
|
|
"--mandir=/share/man"
|
2015-05-13 09:16:22 -07:00
|
|
|
"--no-system-jsoncpp"
|
2015-06-01 11:09:31 -07:00
|
|
|
]
|
2014-10-29 15:44:53 -07:00
|
|
|
++ optional (!stdenv.isCygwin) "--system-libs"
|
2015-05-15 14:31:40 -07:00
|
|
|
++ optional useQt4 "--qt-gui"
|
|
|
|
++ ["--"]
|
|
|
|
++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
|
2010-09-15 11:37:21 -07:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2012-01-20 07:10:28 -08:00
|
|
|
dontUseCmakeConfigure = true;
|
2011-07-21 11:21:38 -07:00
|
|
|
|
|
|
|
preConfigure = optionalString (stdenv ? glibc)
|
|
|
|
''
|
2012-01-20 07:10:28 -08:00
|
|
|
source $setupHook
|
|
|
|
fixCmakeFiles .
|
2015-03-22 15:00:46 -07:00
|
|
|
substituteInPlace Modules/Platform/UnixPaths.cmake \
|
|
|
|
--subst-var-by glibc ${stdenv.glibc}
|
2011-07-21 11:21:38 -07:00
|
|
|
'';
|
2009-04-17 06:48:22 -07:00
|
|
|
|
2010-09-15 11:37:21 -07:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.cmake.org/;
|
|
|
|
description = "Cross-Platform Makefile Generator";
|
2012-01-28 06:39:56 -08:00
|
|
|
platforms = if useQt4 then qt4.meta.platforms else stdenv.lib.platforms.all;
|
2015-03-22 15:00:46 -07:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ urkud mornfall ttuegel ];
|
2010-09-15 11:37:21 -07:00
|
|
|
};
|
2007-07-07 15:31:37 -07:00
|
|
|
}
|