2016-08-01 14:03:08 +02:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook, coreutils, gawk
|
2015-09-29 14:26:20 +02:00
|
|
|
|
|
|
|
# Kernel dependencies
|
2017-12-29 22:45:53 +01:00
|
|
|
, kernel
|
2015-09-29 14:26:20 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2017-07-27 19:00:54 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
assert kernel != null;
|
2017-09-13 01:28:42 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "spl-${version}-${kernel.version}";
|
2018-09-15 00:39:45 +02:00
|
|
|
version = "0.7.11";
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zfsonlinux";
|
|
|
|
repo = "spl";
|
2018-08-23 22:56:10 +02:00
|
|
|
rev = "spl-${version}";
|
2018-09-15 00:39:45 +02:00
|
|
|
sha256 = "15h02g5k3i20y2cycc72vr6hdn8n70jmzqii8dmx9za6bl9nk2rm";
|
2018-08-13 20:40:45 +02:00
|
|
|
};
|
2012-10-05 18:11:25 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
patches = [ ./install_prefix.patch ];
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ] ++ kernel.moduleBuildDependencies;
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
hardeningDisable = [ "fortify" "stackprotector" "pic" ];
|
2016-02-07 23:44:42 +01:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid
|
|
|
|
substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin"
|
|
|
|
substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
|
|
|
|
substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
|
|
|
|
'';
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--with-config=kernel"
|
|
|
|
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
|
|
|
|
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
|
|
];
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
enableParallelBuilding = true;
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
meta = {
|
|
|
|
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
|
2015-09-29 14:26:20 +02:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
longDescription = ''
|
|
|
|
This kernel module is a porting layer for ZFS to work inside the linux
|
|
|
|
kernel.
|
|
|
|
'';
|
2017-11-13 18:37:27 +01:00
|
|
|
|
2018-08-13 20:40:45 +02:00
|
|
|
homepage = http://zfsonlinux.org/;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
|
2015-09-29 14:26:20 +02:00
|
|
|
};
|
2017-07-27 19:00:54 +02:00
|
|
|
}
|