linuxPackages.zfs: 0.6.5.7 -> 0.6.5.8

Adds compatibility for 4.7 & 4.8 Linux kernels.
This commit is contained in:
Franz Pletz
2016-09-25 14:20:46 +02:00
parent 3a4a425728
commit c8c688b0c9
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -20,13 +20,13 @@ assert buildKernel -> kernel != null && spl != null;
stdenv.mkDerivation rec {
name = "zfs-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
version = "0.6.5.7";
version = "0.6.5.8";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "zfs";
rev = "zfs-${version}";
sha256 = "17mshxyp8k7i9a7ys0rznhkz83f6650pby9ka48d6gzgcwv9nnsm";
sha256 = "0qccz1832p3i80qlrrrypypspb9sy9hmpgcfx9vmhnqmkf0yri4a";
};
patches = [ ./nix-build.patch ];
@@ -109,6 +109,6 @@ stdenv.mkDerivation rec {
homepage = http://zfsonlinux.org/;
license = licenses.cddl;
platforms = platforms.linux;
maintainers = with maintainers; [ jcumming wizeman wkennington ];
maintainers = with maintainers; [ jcumming wizeman wkennington fpletz ];
};
}