root5: migrate to gsl (#200455)

This commit is contained in:
Weijia Wang 2022-11-11 00:59:19 +01:00 committed by GitHub
parent e378aa676d
commit 699e05b52a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,7 +17,7 @@
, libxcrypt , libxcrypt
, lz4 , lz4
, xz , xz
, gsl_1 , gsl
, xxHash , xxHash
, Cocoa , Cocoa
, OpenGL , OpenGL
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
}; };
nativeBuildInputs = [ cmake pkg-config ]; nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ pcre python2 zlib libxml2 lz4 xz gsl_1 xxHash libxcrypt ] buildInputs = [ pcre python2 zlib libxml2 lz4 xz gsl xxHash libxcrypt ]
++ lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU libGL ] ++ lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU libGL ]
++ lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ] ++ lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ]
; ;
@ -144,6 +144,7 @@ stdenv.mkDerivation rec {
homepage = "https://root.cern.ch/"; homepage = "https://root.cern.ch/";
description = "A data analysis framework"; description = "A data analysis framework";
platforms = platforms.unix; platforms = platforms.unix;
broken = !stdenv.isx86_64;
maintainers = with maintainers; [ veprbl ]; maintainers = with maintainers; [ veprbl ];
license = licenses.lgpl21; license = licenses.lgpl21;
}; };