3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/build-managers/cmake/default.nix

79 lines
2.2 KiB
Nix
Raw Normal View History

2015-03-22 22:00:46 +00:00
{ stdenv, fetchurl
, bzip2, curl, expat, libarchive, xz, zlib
2015-03-22 22:00:46 +00:00
, useNcurses ? false, ncurses, useQt4 ? false, qt4
2015-04-07 03:48:44 +01:00
, wantPS ? false, ps ? null
}:
with stdenv.lib;
2015-04-07 03:48:44 +01:00
assert wantPS -> (ps != null);
let
os = stdenv.lib.optionalString;
2015-11-13 23:55:44 +00:00
majorVersion = "3.4";
minorVersion = "0";
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";
2015-11-13 23:55:44 +00:00
sha256 = "1shwim3gfdybjx9f11ykxz5l09rh58vmvz8ip76q3i76mkv2pf55";
};
enableParallelBuilding = true;
patches =
# Don't search in non-Nix locations such as /usr, but do search in
2015-03-22 22:00:46 +00:00
# Nixpkgs' Glibc.
2015-03-22 22:03:57 +00:00
optional (stdenv ? glibc) ./search-path-3.2.patch ++
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 13:08:12 +01:00
}) ++ stdenv.lib.optional stdenv.isCygwin ./3.2.2-cygwin.patch;
2015-03-22 22:00:46 +00:00
buildInputs =
[ bzip2 curl expat libarchive xz zlib ]
++ optional useNcurses ncurses
++ optional useQt4 qt4;
2015-04-07 03:48:44 +01:00
propagatedBuildInputs = optional wantPS ps;
CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" buildInputs;
2015-03-22 22:00:46 +00:00
configureFlags =
[ "--docdir=/share/doc/${name}"
2015-03-22 22:00:46 +00:00
"--mandir=/share/man"
"--no-system-jsoncpp"
2015-06-01 19:09:31 +01:00
]
2014-10-29 22:44:53 +00:00
++ optional (!stdenv.isCygwin) "--system-libs"
++ optional useQt4 "--qt-gui"
++ ["--"]
++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF";
setupHook = ./setup-hook.sh;
dontUseCmakeConfigure = true;
preConfigure = optionalString (stdenv ? glibc)
''
source $setupHook
fixCmakeFiles .
2015-03-22 22:00:46 +00:00
substituteInPlace Modules/Platform/UnixPaths.cmake \
--subst-var-by glibc ${stdenv.glibc}
'';
meta = {
homepage = http://www.cmake.org/;
description = "Cross-Platform Makefile Generator";
platforms = if useQt4 then qt4.meta.platforms else stdenv.lib.platforms.all;
2015-03-22 22:00:46 +00:00
maintainers = with stdenv.lib.maintainers; [ urkud mornfall ttuegel ];
};
}