forked from mirrors/nixpkgs
Merge pull request #45514 from lopsided98/spl-fix-version
spl: use correct version to fix binary substitution
This commit is contained in:
commit
714ef2fb64
|
@ -10,11 +10,12 @@ assert kernel != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "spl-${version}-${kernel.version}";
|
name = "spl-${version}-${kernel.version}";
|
||||||
|
version = "0.7.9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "zfsonlinux";
|
owner = "zfsonlinux";
|
||||||
repo = "spl";
|
repo = "spl";
|
||||||
rev = "spl-0.7.9";
|
rev = "spl-${version}";
|
||||||
sha256 = "0540m1dv9jvrzk9kw61glg0h0cwj976mr9zb42y3nh17k47ywff0";
|
sha256 = "0540m1dv9jvrzk9kw61glg0h0cwj976mr9zb42y3nh17k47ywff0";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue