nixpkgs/pkgs/development/tools/build-managers/cmake/default.nix

77 lines
2.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig
2016-12-20 15:20:08 +00:00
, bzip2, curl, expat, libarchive, xz, zlib, libuv
, useNcurses ? false, ncurses, useQt4 ? false, qt4
2015-04-07 02:48:44 +00:00
, wantPS ? false, ps ? null
}:
with stdenv.lib;
2015-04-07 02:48:44 +00:00
assert wantPS -> (ps != null);
assert stdenv ? cc;
assert stdenv.cc ? libc;
2015-04-07 02:48:44 +00:00
let
os = stdenv.lib.optionalString;
2016-12-20 15:20:08 +00:00
majorVersion = "3.7";
minorVersion = "1";
version = "${majorVersion}.${minorVersion}";
in
stdenv.mkDerivation rec {
name = "cmake-${os useNcurses "cursesUI-"}${os useQt4 "qt4UI-"}${version}";
inherit majorVersion;
src = fetchurl {
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";
};
# Don't search in non-Nix locations such as /usr, but do search in our libc.
patches = [ ./search-path-3.2.patch ]
++ optional stdenv.isCygwin ./3.2.2-cygwin.patch;
outputs = [ "out" ];
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 ]
++ optional useNcurses ncurses
++ optional useQt4 qt4;
2015-04-07 02:48:44 +00:00
propagatedBuildInputs = optional wantPS ps;
preConfigure = with stdenv; ''
fixCmakeFiles .
substituteInPlace Modules/Platform/UnixPaths.cmake \
--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 15:22:40 +00:00
substituteInPlace Modules/FindCxxTest.cmake \
--replace "$""{PYTHON_EXECUTABLE}" ${stdenv.shell}
configureFlags="--parallel=''${NIX_BUILD_CORES:-1} $configureFlags"
'';
configureFlags =
[ "--docdir=share/doc/${name}"
"--no-system-jsoncpp"
2015-03-22 22:00:46 +00:00
]
2014-10-29 22:44:53 +00:00
++ optional (!stdenv.isCygwin) "--system-libs"
++ optional useQt4 "--qt-gui"
++ ["--"]
++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
dontUseCmakeConfigure = true;
enableParallelBuilding = true;
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; [ urkud mornfall ttuegel ];
};
}