about summary refs log tree commit diff
path: root/pkgs/applications/science/physics/xfitter
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-08-15 16:20:28 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2020-09-12 23:04:47 +0200
commit8984fc299466c12faf9c04201ab622b9689dcc15 (patch)
tree0c3f309d77984f8f709d5a1d888f760ea17e94ac /pkgs/applications/science/physics/xfitter
parentbafe7eb14db7e0bf16dfe1e4356ecb4de59cf0b5 (diff)
xfitter: fix build w/glibc-2.32
Diffstat (limited to 'pkgs/applications/science/physics/xfitter')
-rw-r--r--pkgs/applications/science/physics/xfitter/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/applications/science/physics/xfitter/default.nix b/pkgs/applications/science/physics/xfitter/default.nix
index b992851e40a87..cbb097350c713 100644
--- a/pkgs/applications/science/physics/xfitter/default.nix
+++ b/pkgs/applications/science/physics/xfitter/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchurl, apfel, apfelgrid, applgrid, blas, gfortran, lhapdf, lapack, libyaml, lynx, mela, root5, qcdnum, which }:
+{ stdenv, fetchurl, apfel, apfelgrid, applgrid, blas, gfortran, lhapdf, lapack, libyaml, lynx
+, mela, root5, qcdnum, which, libtirpc
+}:
 
 stdenv.mkDerivation rec {
   pname = "xfitter";
@@ -37,7 +39,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ gfortran which ];
   buildInputs =
-    [ apfel apfelgrid applgrid blas lhapdf lapack mela root5 qcdnum ]
+    [ apfel apfelgrid applgrid blas lhapdf lapack mela root5 qcdnum libtirpc ]
     # pdf2yaml requires fmemopen and open_memstream which are not readily available on Darwin
     ++ stdenv.lib.optional (!stdenv.isDarwin) libyaml
     ;
@@ -47,6 +49,9 @@ stdenv.mkDerivation rec {
 
   hardeningDisable = [ "format" ];
 
+  NIX_CFLAGS_COMPILE = [ "-I${libtirpc.dev}/include/tirpc" ];
+  NIX_LDFLAGS = [ "-ltirpc" ];
+
   meta = with stdenv.lib; {
     description = "The xFitter project is an open source QCD fit framework ready to extract PDFs and assess the impact of new data";
     license     = licenses.gpl3;