nixpkgs/pkgs/development/tools/build-managers/cmake/common.nix
Yury G. Kudryashov e2751942c7 cmake: 2.4.8 added
svn path=/nixpkgs/branches/stdenv-updates/; revision=10611
2008-02-10 17:41:51 +00:00

20 lines
430 B
Nix

hash: args: with args;
stdenv.mkDerivation rec {
name = "cmake-" + version;
setupHook = ./setup-hook.sh;
src = fetchurl ({
url = "http://www.cmake.org/files/v${v}/${name}.tar.gz";
} // hash);
propagatedBuildInputs = [replace];
postUnpack = "source ${setupHook}; fixCmakeFiles \${sourceRoot}";
postInstall="fixCmakeFiles \$out/share";
meta = {
description = "Cross-Platform Makefile Generator";
};
}