nixpkgs/pkgs/applications/science/biology/neuron/default.nix

89 lines
3.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchurl
, pkg-config
, automake
, autoconf
, libtool
, ncurses
, readline
, which
, python ? null
, useMpi ? false
, mpi
2017-06-28 15:59:54 +00:00
, iv
2016-02-19 10:52:22 +00:00
}:
stdenv.mkDerivation rec {
pname = "neuron";
2017-09-02 20:58:14 +00:00
version = "7.5";
nativeBuildInputs = [ which pkg-config automake autoconf libtool ];
buildInputs = [ ncurses readline python iv ]
++ lib.optional useMpi mpi;
2016-02-19 10:52:22 +00:00
src = fetchurl {
url = "https://www.neuron.yale.edu/ftp/neuron/versions/v${version}/nrn-${version}.tar.gz";
2017-09-02 20:58:14 +00:00
sha256 = "0f26v3qvzblcdjg7isq0m9j2q8q7x3vhmkfllv8lsr3gyj44lljf";
2016-02-19 10:52:22 +00:00
};
2021-01-15 13:21:58 +00:00
patches = (lib.optional (stdenv.isDarwin) [ ./neuron-carbon-disable.patch ]);
2016-02-19 10:52:22 +00:00
# With LLVM 3.8 and above, clang (really libc++) gets upset if you attempt to redefine these...
2021-01-15 13:21:58 +00:00
postPatch = lib.optionalString stdenv.cc.isClang ''
substituteInPlace src/gnu/neuron_gnu_builtin.h \
--replace 'double abs(double arg);' "" \
--replace 'float abs(float arg);' "" \
--replace 'short abs(short arg);' "" \
--replace 'long abs(long arg);' ""
2021-01-15 13:21:58 +00:00
'' + lib.optionalString stdenv.isDarwin ''
# we are darwin, but we don't have all the quirks the source wants to compensate for
substituteInPlace src/nrnpython/setup.py.in --replace 'readline="edit"' 'readline="readline"'
for f in src/nrnpython/*.[ch] ; do
substituteInPlace $f --replace "<Python/Python.h>" "<Python.h>"
done
'';
2016-02-19 10:52:22 +00:00
enableParallelBuilding = true;
## neuron install by default everything under prefix/${host_arch}/*
## override this to support nix standard file hierarchy
## without issues: install everything under prefix/
preConfigure = ''
./build.sh
export prefix="''${prefix} --exec-prefix=''${out}"
'';
2021-01-15 13:21:58 +00:00
configureFlags = with lib;
2017-06-28 15:59:54 +00:00
[ "--with-readline=${readline}" "--with-iv=${iv}" ]
++ optionals (python != null) [ "--with-nrnpython=${python.interpreter}" ]
++ (if useMpi then ["--with-mpi" "--with-paranrn"]
else ["--without-mpi"]);
2021-01-15 13:21:58 +00:00
postInstall = lib.optionals (python != null) [ ''
## standardise python neuron install dir if any
if [[ -d $out/lib/python ]]; then
mkdir -p ''${out}/${python.sitePackages}
mv ''${out}/lib/python/* ''${out}/${python.sitePackages}/
fi
''];
propagatedBuildInputs = [ readline ncurses which libtool ];
2016-02-19 10:52:22 +00:00
meta = with lib; {
2016-02-19 10:52:22 +00:00
description = "Simulation environment for empirically-based simulations of neurons and networks of neurons";
longDescription = "NEURON is a simulation environment for developing and exercising models of
neurons and networks of neurons. It is particularly well-suited to problems where
cable properties of cells play an important role, possibly including extracellular
potential close to the membrane), and where cell membrane properties are complex,
involving many ion-specific channels, ion accumulation, and second messengers";
2016-02-19 10:52:22 +00:00
license = licenses.bsd3;
homepage = "http://www.neuron.yale.edu/neuron";
2016-02-19 10:52:22 +00:00
maintainers = [ maintainers.adev ];
# source claims it's only tested for x86 and powerpc
platforms = platforms.x86_64 ++ platforms.i686;
};
2016-02-19 10:52:22 +00:00
}