2011-02-09 22:08:53 +01:00
|
|
|
{fetchurl, stdenv, replace, curl, expat, zlib, bzip2, libarchive
|
2010-09-15 20:37:21 +02:00
|
|
|
, useNcurses ? false, ncurses, useQt4 ? false, qt4}:
|
2007-07-08 00:31:37 +02:00
|
|
|
|
2010-10-02 07:24:39 +02:00
|
|
|
let
|
|
|
|
os = stdenv.lib.optionalString;
|
2011-02-09 22:08:53 +01:00
|
|
|
inherit (stdenv.lib) optional;
|
2010-10-02 07:24:39 +02:00
|
|
|
majorVersion = "2.8";
|
2011-02-09 22:08:53 +01:00
|
|
|
minorVersion = "3";
|
2010-10-02 07:24:39 +02:00
|
|
|
version = "${majorVersion}.${minorVersion}";
|
|
|
|
in
|
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";
|
2011-02-09 22:08:53 +01:00
|
|
|
sha256 = "1262bz0c0g5c57ba7rbbrs72xa42xs26fwf72mazmkmmhqkx17k8";
|
2007-07-08 00:31:37 +02:00
|
|
|
};
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2011-02-09 22:08:53 +01:00
|
|
|
buildInputs = [ curl expat zlib bzip2 libarchive ]
|
|
|
|
++ optional useNcurses ncurses
|
|
|
|
++ optional useQt4 qt4;
|
2010-09-15 20:37:21 +02:00
|
|
|
|
|
|
|
CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" buildInputs;
|
|
|
|
configureFlags =
|
|
|
|
"--docdir=/share/doc/${name} --mandir=/share/man --system-libs"
|
|
|
|
+ stdenv.lib.optionalString useQt4 " --qt-gui";
|
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2009-02-13 15:43:01 +01:00
|
|
|
postUnpack = ''
|
|
|
|
dontUseCmakeConfigure=1
|
|
|
|
source $setupHook
|
|
|
|
fixCmakeFiles $sourceRoot
|
|
|
|
'';
|
2009-04-17 15:48:22 +02:00
|
|
|
|
2010-09-15 20:37:21 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.cmake.org/;
|
|
|
|
description = "Cross-Platform Makefile Generator";
|
2011-01-05 11:04:49 +01:00
|
|
|
platforms = if useQt4 then qt4.meta.platforms else (with stdenv.lib.platforms; linux ++ freebsd);
|
2010-09-15 20:37:21 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.urkud ];
|
|
|
|
};
|
2007-07-08 00:31:37 +02:00
|
|
|
}
|