2014-01-05 02:57:21 +01:00
|
|
|
{ stdenv, fetchurl, kernel, spl, perl, autoconf, automake, libtool, zlib, libuuid, coreutils, utillinux }:
|
2012-10-05 18:11:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-01-05 02:57:21 +01:00
|
|
|
name = "zfs-0.6.2-${kernel.version}";
|
2012-11-29 15:08:29 +01:00
|
|
|
|
2012-10-05 18:11:25 +02:00
|
|
|
src = fetchurl {
|
2013-08-24 08:20:03 +02:00
|
|
|
url = http://archive.zfsonlinux.org/downloads/zfsonlinux/zfs/zfs-0.6.2.tar.gz;
|
|
|
|
sha256 = "18b5f18k8mwb17r5ippsilmp1a2sqjw9fwn0z82159dkhsadg33b";
|
2012-10-05 18:11:25 +02:00
|
|
|
};
|
|
|
|
|
2014-03-04 02:22:06 +01:00
|
|
|
patches = [ ./mount_zfs_prefix.patch ./nix-build.patch ./libblkid-1db7b9b.patch ./gcc-4.8.patch ./3.13-compat.patch ];
|
2012-10-05 18:11:25 +02:00
|
|
|
|
2014-01-05 02:57:21 +01:00
|
|
|
buildInputs = [ 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
|
|
|
|
|
|
|
preConfigure = ''
|
2012-10-22 20:42:15 +02:00
|
|
|
./autogen.sh
|
|
|
|
|
2012-12-04 23:08:34 +01: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"
|
|
|
|
substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/umount" "${utillinux}/bin/umount"
|
|
|
|
substituteInPlace ./lib/libzfs/libzfs_mount.c --replace "/bin/mount" "${utillinux}/bin/mount"
|
|
|
|
substituteInPlace ./udev/rules.d/* --replace "/lib/udev/vdev_id" "$out/lib/udev/vdev_id"
|
|
|
|
substituteInPlace ./cmd/ztest/ztest.c --replace "/usr/sbin/ztest" "$out/sbin/ztest"
|
|
|
|
substituteInPlace ./cmd/ztest/ztest.c --replace "/usr/sbin/zdb" "$out/sbin/zdb"
|
2012-10-05 18:11:25 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = ''
|
2014-01-05 02:57:21 +01:00
|
|
|
--with-linux=${kernel.dev}/lib/modules/${kernel.modDirVersion}/source
|
|
|
|
--with-linux-obj=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build
|
2013-04-06 09:01:02 +02:00
|
|
|
--with-spl=${spl}/libexec/spl
|
2012-10-05 18:11:25 +02:00
|
|
|
'';
|
|
|
|
|
2013-08-24 08:20:03 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
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;
|
2014-03-15 01:59:23 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming wizeman ];
|
2012-10-05 18:11:25 +02:00
|
|
|
};
|
|
|
|
}
|