Merge pull request #45514 from lopsided98/spl-fix-version

spl: use correct version to fix binary substitution
This commit is contained in:
Jörg Thalheim
2018-08-23 22:20:54 +01:00
committed by GitHub

View File

@@ -10,11 +10,12 @@ assert kernel != null;
stdenv.mkDerivation rec {
name = "spl-${version}-${kernel.version}";
version = "0.7.9";
src = fetchFromGitHub {
owner = "zfsonlinux";
repo = "spl";
rev = "spl-0.7.9";
rev = "spl-${version}";
sha256 = "0540m1dv9jvrzk9kw61glg0h0cwj976mr9zb42y3nh17k47ywff0";
};