aboutsummaryrefslogtreecommitdiff
path: root/srcds-pkgs/bad/cmake-ancient/default.nix
diff options
context:
space:
mode:
authoryuuko <yuuko@partyvan.io>2026-01-03 17:50:09 -0800
committeryuuko <yuuko@partyvan.io>2026-01-03 17:54:47 -0800
commite7e0ce7d474a1dca211e9f8d3d631d9cb29592fb (patch)
tree03aad02d050ef0f7644270de41c9cc09a79f2453 /srcds-pkgs/bad/cmake-ancient/default.nix
parent72b50588f98aa7692f87e238c39f48ca08f46ea6 (diff)
mysql 5.5: just give it an ancient cmake. why not. yeah.HEADmaster
Diffstat (limited to 'srcds-pkgs/bad/cmake-ancient/default.nix')
-rw-r--r--srcds-pkgs/bad/cmake-ancient/default.nix98
1 files changed, 98 insertions, 0 deletions
diff --git a/srcds-pkgs/bad/cmake-ancient/default.nix b/srcds-pkgs/bad/cmake-ancient/default.nix
new file mode 100644
index 0000000..a39ffe4
--- /dev/null
+++ b/srcds-pkgs/bad/cmake-ancient/default.nix
@@ -0,0 +1,98 @@
+{ stdenv, lib, fetchurl, pkg-config
+, bzip2, curl, expat, libarchive, xz, zlib, libuv, rhash
+, buildPackages
+# darwin attributes
+, ps
+, isBootstrap ? false
+, useSharedLibraries ? (!isBootstrap && !stdenv.isCygwin)
+}:
+
+stdenv.mkDerivation rec {
+ pname = "cmake"
+ + lib.optionalString isBootstrap "-boot";
+ version = "3.17.2";
+
+ src = fetchurl {
+ url = "${meta.homepage}files/v${lib.versions.majorMinor version}/cmake-${version}.tar.gz";
+ # compare with https://cmake.org/files/v${lib.versions.majorMinor version}/cmake-${version}-SHA-256.txt
+ sha256 = "199srp8yfai51pcbpmfyc4s8vzrmh2dm91bp582hj2l29x634xzw";
+ };
+ NIX_CFLAGS_COMPILE="-fpermissive";
+ patches = [
+ # Don't search in non-Nix locations such as /usr, but do search in our libc.
+ ./search-path.patch
+
+ # Don't depend on frameworks.
+ ./application-services.patch
+
+ # Derived from https://github.com/libuv/libuv/commit/1a5d4f08238dd532c3718e210078de1186a5920d
+ ./libuv-application-services.patch
+
+ ];
+
+ outputs = [ "out" ];
+ setOutputFlags = false;
+
+ setupHook = ./setup-hook.sh;
+
+ buildInputs =
+ [ setupHook pkg-config ]
+ ++ lib.optionals useSharedLibraries [ bzip2 curl expat libarchive xz zlib libuv rhash ];
+
+ depsBuildBuild = [ buildPackages.stdenv.cc ];
+
+ propagatedBuildInputs = lib.optional stdenv.isDarwin ps;
+
+ preConfigure = ''
+ fixCmakeFiles .
+ substituteInPlace Modules/Platform/UnixPaths.cmake \
+ --subst-var-by libc_bin ${lib.getBin stdenv.cc.libc} \
+ --subst-var-by libc_dev ${lib.getDev stdenv.cc.libc} \
+ --subst-var-by libc_lib ${lib.getLib stdenv.cc.libc}
+ substituteInPlace Modules/FindCxxTest.cmake \
+ --replace "$""{PYTHON_EXECUTABLE}" ${stdenv.shell}
+ ''
+ # CC_FOR_BUILD and CXX_FOR_BUILD are used to bootstrap cmake
+ + ''
+ configureFlags="--parallel=''${NIX_BUILD_CORES:-1} CC=$CC_FOR_BUILD CXX=$CXX_FOR_BUILD $configureFlags"
+ '';
+
+ configureFlags = [
+ "--docdir=share/doc/${pname}${version}"
+ ] ++ (if useSharedLibraries then [ "--no-system-jsoncpp" "--system-libs" ] else [ "--no-system-libs" ]) # FIXME: cleanup
+ # Workaround https://gitlab.kitware.com/cmake/cmake/-/issues/20568
+ ++ lib.optionals stdenv.hostPlatform.is32bit [
+ "CFLAGS=-D_FILE_OFFSET_BITS=64"
+ "CXXFLAGS=-D_FILE_OFFSET_BITS=64"
+ ]
+ ++ [
+ "--"
+ # We should set the proper `CMAKE_SYSTEM_NAME`.
+ # http://www.cmake.org/Wiki/CMake_Cross_Compiling
+ #
+ # Unfortunately cmake seems to expect absolute paths for ar, ranlib, and
+ # strip. Otherwise they are taken to be relative to the source root of the
+ # package being built.
+ "-DCMAKE_CXX_COMPILER=${stdenv.cc.targetPrefix}c++"
+ "-DCMAKE_C_COMPILER=${stdenv.cc.targetPrefix}cc"
+ "-DCMAKE_AR=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ar"
+ "-DCMAKE_RANLIB=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}ranlib"
+ "-DCMAKE_STRIP=${lib.getBin stdenv.cc.bintools.bintools}/bin/${stdenv.cc.targetPrefix}strip"
+ ];
+
+ # make install attempts to use the just-built cmake
+ preInstall = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) ''
+ sed -i 's|bin/cmake|${buildPackages.cmake}/bin/cmake|g' Makefile
+ '';
+
+ dontUseCmakeConfigure = true;
+ enableParallelBuilding = true;
+
+ # This isn't an autoconf configure script; triples are passed via
+ # CMAKE_SYSTEM_NAME, etc.
+ configurePlatforms = [ ];
+
+ doCheck = false; # fails
+
+ meta.homepage = "http://www.cmake.org/";
+}