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

38 lines
908 B
Nix
Raw Normal View History

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