nixpkgs/pkgs/development/libraries/accelio/default.nix

60 lines
1.8 KiB
Nix
Raw Normal View History

2015-04-21 20:31:11 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook, libibverbs, librdmacm, libevent
# Linux only deps
, numactl, kernel ? null
}:
stdenv.mkDerivation rec {
name = "accelio-${version}${stdenv.lib.optionalString (kernel != null) "-kernel"}";
2015-11-06 05:28:29 +03:00
version = "1.5";
2015-04-21 20:31:11 +03:00
src = fetchFromGitHub {
owner = "accelio";
repo = "accelio";
2015-11-06 05:28:29 +03:00
rev = "v1.5";
2015-09-01 10:25:47 +03:00
sha256 = "172frqk2n43g0arhazgcwfvj0syf861vdzdpxl7idr142bb0ykf7";
2015-04-21 20:31:11 +03:00
};
patches = [ ./fix-printfs.patch ];
2015-04-21 20:31:11 +03:00
postPatch = ''
# Don't build broken examples
sed -i '/AC_CONFIG_SUBDIRS(\[\(examples\|tests\).*\/kernel/d' configure.ac
2015-04-21 20:31:11 +03:00
# Allow the installation of xio kernel headers
sed -i 's,/opt/xio,''${out},g' src/kernel/xio/Makefile.in
2015-06-25 03:49:48 +03:00
# Don't install ldconfig entries
sed -i '\,/etc/ld.so.conf.d/libxio.conf,d' src/usr/Makefile.am
sed -i '\,/sbin/ldconfig,d' src/usr/Makefile.am
2015-04-21 20:31:11 +03:00
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libevent ];
propagatedBuildInputs = [ libibverbs librdmacm ]
++ stdenv.lib.optional stdenv.isLinux numactl;
configureFlags = [
"--enable-rdma"
"--disable-raio-build"
] ++ stdenv.lib.optionals (kernel != null) [
"--enable-kernel-module"
"--with-kernel=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"--with-kernel-build=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
INSTALL_MOD_PATH = "\${out}";
meta = with stdenv.lib; {
homepage = http://www.accelio.org/;
description = "High-performance messaging and RPC library";
longDescription = ''
A high-performance asynchronous reliable messaging and RPC library
optimized for hardware acceleration.
'';
2015-04-21 20:31:11 +03:00
license = licenses.bsd3;
platforms = with platforms; linux ++ freebsd;
maintainers = with maintainers; [ wkennington ];
};
}