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

50 lines
1.7 KiB
Nix
Raw Normal View History

2014-12-24 01:04:44 +00:00
{ stdenv, fetchFromGitHub, kernel, perl, autoconf, automake, libtool, coreutils, gawk }:
2012-10-05 17:11:25 +01:00
2014-12-24 01:04:44 +00:00
stdenv.mkDerivation rec {
name = "spl-${version}-${kernel.version}";
version = "0.6.3-1.2";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
rev = "spl-${version}";
sha256 = "0id0m3sfpkz8w7b2pc51px8kvz8xnaf8msps57ddarxidmxvb45g";
2012-10-05 17:11:25 +01:00
};
2014-12-24 01:04:44 +00:00
patches = [ ./install_prefix.patch ./const.patch ];
2012-10-05 17:11:25 +01:00
buildInputs = [ perl 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=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source
--with-linux-obj=${kernel.dev}/lib/modules/${kernel.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;
2014-03-15 00:59:23 +00:00
maintainers = with stdenv.lib.maintainers; [ jcumming wizeman ];
2012-10-05 17:11:25 +01:00
};
}