nnpdf: init at 4.0.4
This commit is contained in:
parent
f607b644c4
commit
8e24a6db2e
71
pkgs/applications/science/physics/nnpdf/default.nix
Normal file
71
pkgs/applications/science/physics/nnpdf/default.nix
Normal file
@ -0,0 +1,71 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, cmake
|
||||
, pkg-config
|
||||
, apfel
|
||||
, gsl
|
||||
, lhapdf
|
||||
, libarchive
|
||||
, libyamlcpp
|
||||
, python3
|
||||
, sqlite
|
||||
, swig
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "nnpdf";
|
||||
version = "4.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "NNPDF";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-Alx4W0TkPzJBsnRXcKBrlEU6jWTnOjrji/IPk+dNCw0=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/NNPDF/nnpdf/commit/7943b62a91d3a41fd4f6366b18881d50695f4b45.diff";
|
||||
hash = "sha256-UXhTO7vZgJiY8h3bgjg7SQC0gMUQsYQ/V/PgtCEQ7VU=";
|
||||
})
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
for file in CMakeLists.txt buildmaster/CMakeLists.txt; do
|
||||
substituteInPlace $file \
|
||||
--replace "-march=nocona -mtune=haswell" ""
|
||||
done
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
apfel
|
||||
gsl
|
||||
lhapdf
|
||||
libarchive
|
||||
libyamlcpp
|
||||
python3
|
||||
python3.pkgs.numpy
|
||||
sqlite
|
||||
swig
|
||||
];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DCOMPILE_filter=ON"
|
||||
"-DCOMPILE_evolvefit=ON"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An open-source machine learning framework for global analyses of parton distributions";
|
||||
homepage = "https://docs.nnpdf.science/";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = [ maintainers.veprbl ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -33161,6 +33161,8 @@ with pkgs;
|
||||
lhapdf = lhapdf.override { stdenv = gccStdenv; };
|
||||
};
|
||||
|
||||
nnpdf = callPackage ../applications/science/physics/nnpdf { };
|
||||
|
||||
professor = callPackage ../applications/science/physics/professor { };
|
||||
|
||||
sacrifice = callPackage ../applications/science/physics/sacrifice {};
|
||||
|
@ -5719,6 +5719,10 @@ in {
|
||||
|
||||
nltk = callPackage ../development/python-modules/nltk { };
|
||||
|
||||
nnpdf = toPythonModule (pkgs.nnpdf.override {
|
||||
python3 = python;
|
||||
});
|
||||
|
||||
nmapthon2 = callPackage ../development/python-modules/nmapthon2 { };
|
||||
|
||||
amaranth-boards = callPackage ../development/python-modules/amaranth-boards { };
|
||||
|
Loading…
Reference in New Issue
Block a user