forked from mirrors/nixpkgs
be9c0e8b7e
This also fixes breakage on darwin due to LLVM4.0 migration. I had to enable opengl because otherwise macOS build is broken. See root commit 23f8871c7 ('Do not include OpenGL directly but use our TGLIncludes for that purpose.') I've enabled xml because TUnfold depends on it.
82 lines
2.1 KiB
Nix
82 lines
2.1 KiB
Nix
{ stdenv, fetchurl, fetchpatch, cmake, pcre, pkgconfig, python2
|
|
, libX11, libXpm, libXft, libXext, mesa, zlib, libxml2, lzma, gsl
|
|
, Cocoa, OpenGL }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "root-${version}";
|
|
version = "6.09.02";
|
|
|
|
src = fetchurl {
|
|
url = "https://root.cern.ch/download/root_v${version}.source.tar.gz";
|
|
sha256 = "0fc6b0l7bw66cyckxs4ikvyzcv1zlfx88205jx153smdhih0jj2k";
|
|
};
|
|
|
|
buildInputs = [ cmake pcre pkgconfig python2 zlib libxml2 lzma gsl ]
|
|
++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext mesa ]
|
|
++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
|
|
;
|
|
|
|
patches = [
|
|
./sw_vers.patch
|
|
|
|
# this prevents thisroot.sh from setting $p, which interferes with stdenv setup
|
|
./thisroot.patch
|
|
|
|
# https://sft.its.cern.ch/jira/browse/ROOT-8728
|
|
(fetchpatch {
|
|
url = "https://sft.its.cern.ch/jira/secure/attachment/20025/0001-std-string_view-has-no-more-to_string.patch";
|
|
sha256 = "0ngyk960xfrcsj4vhr1ax8h85fx0g1cfycxi3k35a6ych2zmyg8q";
|
|
})
|
|
./ROOT-8728-extra.patch
|
|
];
|
|
|
|
preConfigure = ''
|
|
patchShebangs build/unix/
|
|
'';
|
|
|
|
cmakeFlags = [
|
|
"-Drpath=ON"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
"-DCMAKE_INSTALL_INCLUDEDIR=include"
|
|
"-Dalien=OFF"
|
|
"-Dbonjour=OFF"
|
|
"-Dcastor=OFF"
|
|
"-Dchirp=OFF"
|
|
"-Ddavix=OFF"
|
|
"-Ddcache=OFF"
|
|
"-Dfftw3=OFF"
|
|
"-Dfitsio=OFF"
|
|
"-Dfortran=OFF"
|
|
"-Dgfal=OFF"
|
|
"-Dgviz=OFF"
|
|
"-Dhdfs=OFF"
|
|
"-Dkrb5=OFF"
|
|
"-Dldap=OFF"
|
|
"-Dmonalisa=OFF"
|
|
"-Dmysql=OFF"
|
|
"-Dodbc=OFF"
|
|
"-Dopengl=ON"
|
|
"-Doracle=OFF"
|
|
"-Dpgsql=OFF"
|
|
"-Dpythia6=OFF"
|
|
"-Dpythia8=OFF"
|
|
"-Drfio=OFF"
|
|
"-Dsqlite=OFF"
|
|
"-Dssl=OFF"
|
|
"-Dxml=ON"
|
|
"-Dxrootd=OFF"
|
|
]
|
|
++ stdenv.lib.optional (stdenv.cc.libc != null) "-DC_INCLUDE_DIRS=${stdenv.lib.getDev stdenv.cc.libc}/include";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = {
|
|
homepage = "https://root.cern.ch/";
|
|
description = "A data analysis framework";
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = with stdenv.lib.maintainers; [ veprbl ];
|
|
};
|
|
}
|