2012-10-22 20:42:15 +02:00
|
|
|
{ stdenv, fetchurl, kernel, spl, perl, autoconf, automake, libtool, zlib, libuuid, coreutils, utillinux }:
|
2012-10-05 18:11:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-11-29 15:08:29 +01:00
|
|
|
name = "zfs-0.6.0-rc12-${kernel.version}";
|
|
|
|
|
2012-10-05 18:11:25 +02:00
|
|
|
src = fetchurl {
|
2012-11-15 07:43:17 +01:00
|
|
|
url = http://github.com/downloads/zfsonlinux/zfs/zfs-0.6.0-rc12.tar.gz;
|
|
|
|
sha256 = "1mipy6v63y8z3c5chn813x8c2r8mwyja1v19dvars3j85105xf1y";
|
2012-10-05 18:11:25 +02:00
|
|
|
};
|
|
|
|
|
2012-11-15 09:02:27 +01:00
|
|
|
patches = [ ./module_perm_prefix.patch ./mount_zfs_prefix.patch ./kerneldir_path.patch ./no_absolute_paths_to_coreutils.patch ];
|
2012-10-05 18:11:25 +02:00
|
|
|
|
2012-10-22 20:42:15 +02:00
|
|
|
buildInputs = [ kernel spl perl autoconf automake libtool zlib libuuid coreutils ];
|
2012-10-05 18:11:25 +02:00
|
|
|
|
2012-11-27 06:28:49 +01:00
|
|
|
# for zdb to get the rpath to libgcc_s, needed for pthread_cancel to work
|
|
|
|
NIX_CFLAGS_LINK = "-lgcc_s";
|
2012-10-05 18:11:25 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${kernel}/lib/modules/${kernel.modDirVersion}/build/include/generated";
|
|
|
|
|
|
|
|
preConfigure = ''
|
2012-10-22 20:42:15 +02:00
|
|
|
./autogen.sh
|
|
|
|
|
2012-10-05 18:11:25 +02:00
|
|
|
substituteInPlace ./module/zfs/zfs_ctldir.c --replace "umount -t zfs" "${utillinux}/bin/umount -t zfs"
|
|
|
|
substituteInPlace ./module/zfs/zfs_ctldir.c --replace "mount -t zfs" "${utillinux}/bin/mount -t zfs"
|
2012-10-22 18:23:53 +02:00
|
|
|
substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/umount" "${utillinux}/bin/umount"
|
|
|
|
substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/mount" "${utillinux}/bin/mount"
|
2012-10-12 08:38:38 +02:00
|
|
|
substituteInPlace ./udev/rules.d/* --replace "/lib/udev/vdev_id" "$out/lib/udev/vdev_id"
|
2012-10-05 18:11:25 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = ''
|
|
|
|
--with-linux=${kernel}/lib/modules/${kernel.version}/build
|
|
|
|
--with-linux-obj=${kernel}/lib/modules/${kernel.version}/build
|
|
|
|
--with-spl=${spl}/libexec/spl/${kernel.version}
|
2012-10-14 06:19:53 +02:00
|
|
|
${if stdenv.system == "i686-linux" then "--enable-atomic-spinlocks" else ""}
|
2012-10-05 18:11:25 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2012-10-11 22:50:28 +02:00
|
|
|
description = "ZFS Filesystem Linux Kernel module";
|
|
|
|
longDescription = ''
|
|
|
|
ZFS is a filesystem that combines a logical volume manager with a
|
|
|
|
Copy-On-Write filesystem with data integrity detection and repair,
|
|
|
|
snapshotting, cloning, block devices, deduplication, and more.
|
|
|
|
'';
|
2012-10-05 18:11:25 +02:00
|
|
|
homepage = http://zfsonlinux.org/;
|
|
|
|
license = stdenv.lib.licenses.cddl;
|
2012-10-17 05:29:23 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2012-10-05 18:11:25 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
|
|
};
|
|
|
|
}
|