Updated cmake to version 2.6.2.

svn path=/nixpkgs/trunk/; revision=13286
This commit is contained in:
Peter Simons 2008-11-13 21:05:01 +00:00
parent 893757cfd9
commit 6a051f96a2

@ -1,19 +1,16 @@
args: with args;
stdenv.mkDerivation {
name = "cmake-2.6.0";
{fetchurl, stdenv, replace}:
stdenv.mkDerivation rec {
name = "cmake-2.6.2";
setupHook = ./setup-hook.sh;
src = fetchurl { url=http://www.cmake.org/files/v2.6/cmake-2.6.0.tar.gz;
sha256 = "09qgk5gk0pnihzf2mmqz5cayd64y5viic8x78x4czrh4982x76a9";
};
propagatedBuildInputs = [replace];
postUnpack = "source \${setupHook}; fixCmakeFiles \${sourceRoot}";
postInstall="fixCmakeFiles \$out/share";
meta = {
description = "Cross-Platform Makefile Generator";
};
src = fetchurl {
url = "http://www.cmake.org/files/v2.6/${name}.tar.gz";
sha256 = "b3f5a9dfa97fb82cb1b7d78a62d949f93c8d4317af36674f337d27066fa6b7e9";
};
propagatedBuildInputs = [replace];
postUnpack = "source \${setupHook}; fixCmakeFiles \${sourceRoot}";
postInstall="fixCmakeFiles \$out/share";
}