splUnstable: 2017-10-31 -> 2017-11-16

Fixes breakage with 4.14 kernels
This commit is contained in:
adisbladis 2017-11-16 12:31:29 +08:00
parent 68a703b405
commit be52cff377
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

@ -13,6 +13,7 @@ let
common = { version
, sha256
, rev ? "spl-${version}"
, broken ? false
} @ args : stdenv.mkDerivation rec {
name = "spl-${configFile}-${version}${optionalString buildKernel "-${kernel.version}"}";
@ -52,7 +53,7 @@ let
kernel.
'';
broken = kernel != null && stdenv.lib.versionAtLeast kernel.version "4.14";
inherit broken;
homepage = http://zfsonlinux.org/;
platforms = platforms.linux;
@ -67,11 +68,13 @@ in
splStable = common {
version = "0.7.3";
sha256 = "0j8mb9ky3pjz9hnz5w6fajpzajl15jq3p0xvxb6lhpqj3rjzsqxb";
broken = kernel != null && stdenv.lib.versionAtLeast kernel.version "4.14";
};
splUnstable = common {
version = "2017-10-31";
rev = "35a44fcb8d6e346f51be82dfe57562c2ea0c6a9c";
sha256 = "193clx7b4p4qhgivmhc88dva0186rnhyv58fx0fwnb5zbx70dam1";
version = "2017-11-16";
rev = "ed19bccfb651843fa208232b3a2d3d22a4152bc8";
sha256 = "08ihjbf5fhcnhq9zavcwswg9djlbalbx1bil4rcv6i3d617wammb";
};
}