253 lines
6.7 KiB
Nix
253 lines
6.7 KiB
Nix
{ stdenv
|
|
, lib
|
|
, callPackage
|
|
, fetchgit
|
|
, fetchurl
|
|
, makeWrapper
|
|
, writeText
|
|
, cmake
|
|
, coreutils
|
|
, git
|
|
, davix
|
|
, ftgl
|
|
, gl2ps
|
|
, glew
|
|
, gnugrep
|
|
, gnused
|
|
, gsl
|
|
, gtest
|
|
, lapack
|
|
, libX11
|
|
, libXpm
|
|
, libXft
|
|
, libXext
|
|
, libGLU
|
|
, libGL
|
|
, libxcrypt
|
|
, libxml2
|
|
, llvm_16
|
|
, lsof
|
|
, lz4
|
|
, xz
|
|
, man
|
|
, openblas
|
|
, openssl
|
|
, pcre
|
|
, nlohmann_json
|
|
, pkg-config
|
|
, procps
|
|
, python
|
|
, which
|
|
, xxHash
|
|
, zlib
|
|
, zstd
|
|
, giflib
|
|
, libjpeg
|
|
, libtiff
|
|
, libpng
|
|
, patchRcPathCsh
|
|
, patchRcPathFish
|
|
, patchRcPathPosix
|
|
, tbb
|
|
, xrootd
|
|
, Cocoa
|
|
, CoreSymbolication
|
|
, OpenGL
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "root";
|
|
version = "6.32.06";
|
|
|
|
passthru = {
|
|
tests = import ./tests { inherit callPackage; };
|
|
};
|
|
|
|
src = fetchurl {
|
|
url = "https://root.cern.ch/download/root_v${version}.source.tar.gz";
|
|
hash = "sha256-P8Ay2T/oSN6lrbG0fY8KhieVIyk/7gqis81Sof+rckc=";
|
|
};
|
|
|
|
clad_src = fetchgit {
|
|
url = "https://github.com/vgvassilev/clad";
|
|
# Make sure that this is the same tag as in the ROOT build files!
|
|
# https://github.com/root-project/root/blob/master/interpreter/cling/tools/plugins/clad/CMakeLists.txt#L76
|
|
rev = "refs/tags/v1.7";
|
|
hash = "sha256-iKrZsuUerrlrjXBrxcTsFu/t0Pb0sa4UlfSwd1yhg3g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper cmake pkg-config git ];
|
|
propagatedBuildInputs = [
|
|
nlohmann_json
|
|
];
|
|
buildInputs = [
|
|
davix
|
|
ftgl
|
|
gl2ps
|
|
glew
|
|
pcre
|
|
zlib
|
|
zstd
|
|
lapack
|
|
libxcrypt
|
|
libxml2
|
|
llvm_16
|
|
lz4
|
|
xz
|
|
gsl
|
|
gtest
|
|
openblas
|
|
openssl
|
|
xxHash
|
|
giflib
|
|
libjpeg
|
|
libtiff
|
|
libpng
|
|
patchRcPathCsh
|
|
patchRcPathFish
|
|
patchRcPathPosix
|
|
python.pkgs.numpy
|
|
tbb
|
|
xrootd
|
|
]
|
|
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ libX11 libXpm libXft libXext libGLU libGL ]
|
|
++ lib.optionals (stdenv.hostPlatform.isDarwin) [ Cocoa CoreSymbolication OpenGL ]
|
|
;
|
|
|
|
patches = [
|
|
./sw_vers.patch
|
|
];
|
|
|
|
preConfigure = ''
|
|
for path in builtins/*; do
|
|
if [[ "$path" != "builtins/openui5" ]] && [[ "$path" != "builtins/rendercore" ]]; then
|
|
rm -rf "$path"
|
|
fi
|
|
done
|
|
substituteInPlace cmake/modules/SearchInstalledSoftware.cmake \
|
|
--replace-fail 'set(lcgpackages ' '#set(lcgpackages '
|
|
|
|
# We have to bypass the connection check, because it would disable clad.
|
|
# This should probably be fixed upstream with a flag to disable the
|
|
# connectivity check!
|
|
substituteInPlace CMakeLists.txt \
|
|
--replace-fail 'if(clad AND NO_CONNECTION)' 'if(FALSE)'
|
|
# Make sure that clad is not downloaded when building
|
|
substituteInPlace interpreter/cling/tools/plugins/clad/CMakeLists.txt \
|
|
--replace-fail 'UPDATE_COMMAND ""' 'SOURCE_DIR ${clad_src} DOWNLOAD_COMMAND "" UPDATE_COMMAND ""'
|
|
# Make sure that clad is finding the right llvm version
|
|
substituteInPlace interpreter/cling/tools/plugins/clad/CMakeLists.txt \
|
|
--replace-fail '-DLLVM_DIR=''${LLVM_BINARY_DIR}' '-DLLVM_DIR=${llvm_16.dev}/lib/cmake/llvm'
|
|
|
|
substituteInPlace interpreter/llvm-project/clang/tools/driver/CMakeLists.txt \
|
|
--replace-fail 'add_clang_symlink(''${link} clang)' ""
|
|
|
|
# Don't require textutil on macOS
|
|
: > cmake/modules/RootCPack.cmake
|
|
|
|
# Hardcode path to fix use with cmake
|
|
sed -i cmake/scripts/ROOTConfig.cmake.in \
|
|
-e '1iset(nlohmann_json_DIR "${nlohmann_json}/lib/cmake/nlohmann_json/")'
|
|
|
|
patchShebangs build/unix/
|
|
'' + lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
# Eliminate impure reference to /System/Library/PrivateFrameworks
|
|
substituteInPlace core/macosx/CMakeLists.txt \
|
|
--replace-fail "-F/System/Library/PrivateFrameworks " ""
|
|
'' + lib.optionalString (stdenv.hostPlatform.isDarwin && lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11") ''
|
|
MACOSX_DEPLOYMENT_TARGET=10.16
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_BINDIR=bin"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
"-Dbuiltin_llvm=OFF"
|
|
"-Dfail-on-missing=ON"
|
|
"-Dfitsio=OFF"
|
|
"-Dgnuinstall=ON"
|
|
"-Dmathmore=ON"
|
|
"-Dmysql=OFF"
|
|
"-Dpgsql=OFF"
|
|
"-Dsqlite=OFF"
|
|
"-Dvdt=OFF"
|
|
]
|
|
++ lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${lib.getDev stdenv.cc.libc}/include"
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks"
|
|
|
|
# fatal error: module map file '/nix/store/<hash>-Libsystem-osx-10.12.6/include/module.modulemap' not found
|
|
# fatal error: could not build module '_Builtin_intrinsics'
|
|
"-Druntime_cxxmodules=OFF"
|
|
];
|
|
|
|
postInstall = ''
|
|
for prog in rootbrowse rootcp rooteventselector rootls rootmkdir rootmv rootprint rootrm rootslimtree; do
|
|
wrapProgram "$out/bin/$prog" \
|
|
--set PYTHONPATH "$out/lib"
|
|
done
|
|
|
|
# Make ldd and sed available to the ROOT executable by prefixing PATH.
|
|
wrapProgram "$out/bin/root" \
|
|
--prefix PATH : "${lib.makeBinPath [
|
|
gnused # sed
|
|
stdenv.cc # c++ ld etc.
|
|
stdenv.cc.libc # ldd
|
|
]}"
|
|
|
|
# Patch thisroot.{sh,csh,fish}
|
|
|
|
# The main target of `thisroot.sh` is "bash-like shells",
|
|
# but it also need to support Bash-less POSIX shell like dash,
|
|
# as they are mentioned in `thisroot.sh`.
|
|
|
|
patchRcPathPosix "$out/bin/thisroot.sh" "${lib.makeBinPath [
|
|
coreutils # dirname tail
|
|
gnugrep # grep
|
|
gnused # sed
|
|
lsof # lsof
|
|
man # manpath
|
|
procps # ps
|
|
which # which
|
|
]}"
|
|
patchRcPathCsh "$out/bin/thisroot.csh" "${lib.makeBinPath [
|
|
coreutils
|
|
gnugrep
|
|
gnused
|
|
lsof # lsof
|
|
man
|
|
which
|
|
]}"
|
|
patchRcPathFish "$out/bin/thisroot.fish" "${lib.makeBinPath [
|
|
coreutils
|
|
man
|
|
which
|
|
]}"
|
|
'';
|
|
|
|
# error: aligned allocation function of type 'void *(std::size_t, std::align_val_t)' is only available on macOS 10.13 or newer
|
|
env.CXXFLAGS = lib.optionalString (stdenv.hostPlatform.system == "x86_64-darwin") "-faligned-allocation";
|
|
|
|
# workaround for
|
|
# https://github.com/root-project/root/issues/14778
|
|
env.NIX_LDFLAGS = lib.optionalString (!stdenv.isDarwin) "--version-script,${writeText "version.map" "ROOT { global: *; };"}";
|
|
|
|
# To use the debug information on the fly (without installation)
|
|
# add the outPath of root.debug into NIX_DEBUG_INFO_DIRS (in PATH-like format)
|
|
# and make sure that gdb from Nixpkgs can be found in PATH.
|
|
#
|
|
# Darwin currently fails to support it (#203380)
|
|
# we set it to true hoping to benefit from the future fix.
|
|
# Before that, please make sure if root.debug exists before using it.
|
|
separateDebugInfo = true;
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://root.cern/";
|
|
description = "Data analysis framework";
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.guitargeek maintainers.veprbl ];
|
|
license = licenses.lgpl21;
|
|
};
|
|
}
|