nixpkgs/pkgs/os-specific/linux/spl/default.nix

57 lines
1.7 KiB
Nix
Raw Normal View History

{ fetchFromGitHub, stdenv, autoreconfHook, coreutils, gawk
2019-03-05 14:58:51 +00:00
, fetchpatch
# Kernel dependencies
, kernel
}:
with stdenv.lib;
2017-07-27 17:00:54 +00:00
assert kernel != null;
2017-09-12 23:28:42 +00:00
stdenv.mkDerivation rec {
name = "spl-${version}-${kernel.version}";
2019-03-05 14:58:51 +00:00
version = "0.7.13";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
2018-08-23 20:56:10 +00:00
rev = "spl-${version}";
2019-03-05 14:58:51 +00:00
sha256 = "1rzqgiszy8ad2gx20577azp1y5jgad0907slfzl5y2zb05jgaipa";
};
2012-10-05 16:11:25 +00:00
patches = [ ./install_prefix.patch ];
nativeBuildInputs = [ autoreconfHook ] ++ kernel.moduleBuildDependencies;
hardeningDisable = [ "fortify" "stackprotector" "pic" ];
2016-02-07 22:44:42 +00: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"
'';
configureFlags = [
"--with-config=kernel"
"--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source"
"--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
];
enableParallelBuilding = true;
meta = {
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
longDescription = ''
This kernel module is a porting layer for ZFS to work inside the linux
kernel.
'';
2017-11-13 17:37:27 +00:00
homepage = http://zfsonlinux.org/;
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman fpletz globin ];
};
2017-07-27 17:00:54 +00:00
}