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

46 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, kernelDev, perl, autoconf, automake, libtool, coreutils, gawk }:
2012-10-05 17:11:25 +01:00
stdenv.mkDerivation {
name = "spl-0.6.0-rc14-${kernelDev.version}";
2012-10-05 17:11:25 +01:00
src = fetchurl {
2013-02-02 03:52:57 +00:00
url = http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.0-rc14.tar.gz;
sha256 = "00wyamf13z8ins4s14xf0b3hfjfz4w084mr17hs3k5xifb5jxa8g";
2012-10-05 17:11:25 +01:00
};
2012-11-15 08:12:37 +00:00
patches = [ ./install_prefix.patch ./install_prefix_2.patch ./module_prefix.patch ];
2012-10-05 17:11:25 +01:00
buildInputs = [ perl kernelDev autoconf automake libtool ];
2012-10-05 17:11:25 +01:00
NIX_CFLAGS_COMPILE = "-I${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build/include/generated";
2012-10-05 17:11:25 +01:00
preConfigure = ''
./autogen.sh
substituteInPlace ./module/spl/spl-generic.c --replace /usr/bin/hostid hostid
substituteInPlace ./module/spl/spl-module.c --replace /bin/mknod mknod
substituteInPlace ./module/spl/spl-generic.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:${gawk}:/bin"
substituteInPlace ./module/spl/spl-module.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
substituteInPlace ./module/splat/splat-vnode.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
'';
configureFlags = ''
--with-linux=${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build
--with-linux-obj=${kernelDev}/lib/modules/${kernelDev.modDirVersion}/build
2012-10-05 17:11:25 +01:00
'';
meta = {
description = "Kernel module driver for solaris porting layer (needed by in-kernel zfs)";
2012-10-11 21:50:28 +01:00
longDescription = ''
This kernel module is a porting layer for ZFS to work inside the linux
kernel.
2012-10-11 21:50:28 +01:00
'';
2012-10-05 17:11:25 +01:00
homepage = http://zfsonlinux.org/;
platforms = stdenv.lib.platforms.linux;
license = stdenv.lib.licenses.gpl2Plus;
2012-10-05 17:11:25 +01:00
maintainers = with stdenv.lib.maintainers; [ jcumming ];
};
}