2019-12-23 06:51:39 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python, cunit, dpdk, libaio, libbsd, libuuid, numactl, openssl }:
|
2018-05-21 01:59:30 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "spdk";
|
2020-02-06 15:28:05 +00:00
|
|
|
version = "20.01";
|
2018-05-21 01:59:30 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "spdk";
|
|
|
|
repo = "spdk";
|
|
|
|
rev = "v${version}";
|
2020-02-06 15:28:05 +00:00
|
|
|
sha256 = "13pbl46bfzc3z10ydr1crimklyj7f0s73873bjknglw474gm52h8";
|
2018-05-21 01:59:30 +00:00
|
|
|
};
|
|
|
|
|
2019-12-23 06:51:39 +00:00
|
|
|
patches = [ ./spdk-dpdk-meson.patch ];
|
|
|
|
|
2018-05-21 01:59:30 +00:00
|
|
|
nativeBuildInputs = [ python ];
|
|
|
|
|
2019-12-23 06:51:39 +00:00
|
|
|
buildInputs = [ cunit dpdk libaio libbsd libuuid numactl openssl ];
|
2018-05-21 01:59:30 +00:00
|
|
|
|
2018-05-21 03:39:54 +00:00
|
|
|
postPatch = ''
|
|
|
|
patchShebangs .
|
|
|
|
'';
|
|
|
|
|
2018-05-21 01:59:30 +00:00
|
|
|
configureFlags = [ "--with-dpdk=${dpdk}" ];
|
|
|
|
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-mssse3"; # Necessary to compile.
|
2018-05-21 01:59:30 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Set of libraries for fast user-mode storage";
|
2019-05-13 05:16:35 +00:00
|
|
|
homepage = "https://spdk.io/";
|
2018-05-21 01:59:30 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ orivej ];
|
|
|
|
};
|
|
|
|
}
|