2013-03-24 12:45:00 +01:00
|
|
|
{ stdenv, fetchurl, kernelDev, perl, autoconf, automake, libtool, coreutils, gawk }:
|
2012-10-05 18:11:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2013-04-06 09:01:02 +02:00
|
|
|
name = "spl-0.6.1-${kernelDev.version}";
|
2012-10-05 18:11:25 +02:00
|
|
|
src = fetchurl {
|
2013-04-06 09:01:02 +02:00
|
|
|
url = "http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.1.tar.gz";
|
|
|
|
sha256 = "1bnianc00bkpdbcmignzqfv9yr8h6vj56wfl7lkhi9a5m5b3xakb";
|
2012-10-05 18:11:25 +02:00
|
|
|
};
|
|
|
|
|
2013-04-06 09:01:02 +02:00
|
|
|
patches = [ ./install_prefix.patch ];
|
2012-10-05 18:11:25 +02:00
|
|
|
|
2013-03-24 12:45:00 +01:00
|
|
|
buildInputs = [ perl kernelDev autoconf automake libtool ];
|
2012-10-05 18:11:25 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
./autogen.sh
|
|
|
|
|
2013-04-06 09:01:02 +02:00
|
|
|
substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid
|
|
|
|
substituteInPlace ./module/spl/spl-module.c --replace /bin/mknod mknod
|
2012-10-05 18:11:25 +02:00
|
|
|
|
|
|
|
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"
|
2013-04-06 09:01:02 +02:00
|
|
|
substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
|
2012-10-05 18:11:25 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = ''
|
2013-03-24 12:45:00 +01:00
|
|
|
--with-linux=${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build
|
|
|
|
--with-linux-obj=${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build
|
2012-10-05 18:11:25 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
|
2012-10-11 22:50:28 +02:00
|
|
|
|
|
|
|
longDescription = ''
|
2012-10-17 05:26:38 +02:00
|
|
|
This kernel module is a porting layer for ZFS to work inside the linux
|
|
|
|
kernel.
|
2012-10-11 22:50:28 +02:00
|
|
|
'';
|
|
|
|
|
2012-10-05 18:11:25 +02:00
|
|
|
homepage = http://zfsonlinux.org/;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-10-14 06:19:53 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2012-10-05 18:11:25 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
|
|
};
|
|
|
|
}
|