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

57 lines
1.7 KiB
Nix
Raw Normal View History

{ fetchFromGitHub, stdenv, autoreconfHook, coreutils, gawk
# Kernel dependencies
, kernel
}:
with stdenv.lib;
2017-07-27 19:00:54 +02:00
assert kernel != null;
2017-09-13 01:28:42 +02:00
stdenv.mkDerivation rec {
name = "spl-${version}-${kernel.version}";
2018-09-15 00:39:45 +02:00
version = "0.7.11";
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";
};
2012-10-05 18:11:25 +02:00
patches = [ ./install_prefix.patch ];
nativeBuildInputs = [ autoreconfHook ] ++ kernel.moduleBuildDependencies;
hardeningDisable = [ "fortify" "stackprotector" "pic" ];
2016-02-07 23:44:42 +01: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 18:37:27 +01:00
homepage = http://zfsonlinux.org/;
platforms = platforms.linux;
license = licenses.gpl2Plus;
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz globin ];
};
2017-07-27 19:00:54 +02:00
}