1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/os-specific/linux/spl/default.nix

46 lines
1.6 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.2-${kernelDev.version}";
2012-10-05 17:11:25 +01:00
src = fetchurl {
url = http://archive.zfsonlinux.org/downloads/zfsonlinux/spl/spl-0.6.2.tar.gz;
sha256 = "196scl8q0bkkak6m0p1l1fz254cgsizqm73bf9wk3iynamq7qmrw";
2012-10-05 17:11:25 +01:00
};
2013-04-06 08:01:02 +01:00
patches = [ ./install_prefix.patch ];
2012-10-05 17:11:25 +01:00
buildInputs = [ perl kernelDev autoconf automake libtool ];
2012-10-05 17:11:25 +01:00
preConfigure = ''
./autogen.sh
2013-04-06 08:01:02 +01: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 17:11:25 +01: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 08:01:02 +01:00
substituteInPlace ./module/splat/splat-linux.c --replace "PATH=/sbin:/usr/sbin:/bin:/usr/bin" "PATH=${coreutils}:/bin"
2012-10-05 17:11:25 +01:00
'';
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
'';
enableParallelBuilding = true;
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 ];
};
}