mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
65 lines
1.8 KiB
Nix
65 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, apfel
|
|
, apfelgrid
|
|
, applgrid
|
|
, blas
|
|
, ceres-solver
|
|
, cmake
|
|
, gfortran
|
|
, gsl
|
|
, lapack
|
|
, lhapdf
|
|
, libtirpc
|
|
, libyaml
|
|
, yaml-cpp
|
|
, pkg-config
|
|
, qcdnum
|
|
, root
|
|
, zlib
|
|
, memorymappingHook, memstreamHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "xfitter";
|
|
version = "2.2.0";
|
|
|
|
src = fetchurl {
|
|
name = "${pname}-${version}.tgz";
|
|
url = "https://www.xfitter.org/xFitter/xFitter/DownloadPage?action=AttachFile&do=get&target=${pname}-${version}.tgz";
|
|
sha256 = "sha256-ZHIQ5hOY+k0/wmpE0o4Po+RZ4MkVMk+bK1Rc6eqwwH0=";
|
|
};
|
|
|
|
patches = [
|
|
# Avoid need for -fallow-argument-mismatch
|
|
./0001-src-GetChisquare.f-use-correct-types-in-calls-to-DSY.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake gfortran pkg-config ];
|
|
buildInputs =
|
|
[ apfel blas ceres-solver lhapdf lapack libyaml root qcdnum gsl yaml-cpp zlib ]
|
|
++ lib.optionals ("5" == lib.versions.major root.version) [ apfelgrid applgrid ]
|
|
++ lib.optionals (stdenv.system == "x86_64-darwin") [ memorymappingHook memstreamHook ]
|
|
++ lib.optional (stdenv.hostPlatform.libc == "glibc") libtirpc
|
|
;
|
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString (stdenv.hostPlatform.libc == "glibc") "-I${libtirpc.dev}/include/tirpc";
|
|
NIX_LDFLAGS = lib.optional (stdenv.hostPlatform.libc == "glibc") "-ltirpc";
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
# workaround wrong library IDs
|
|
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
ln -sv "$out/lib/xfitter/"* "$out/lib/"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "XFitter project is an open source QCD fit framework ready to extract PDFs and assess the impact of new data";
|
|
license = licenses.gpl3;
|
|
homepage = "https://www.xfitter.org/xFitter";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ veprbl ];
|
|
};
|
|
}
|