Merge pull request #232863 from erdnaxe/cryptodev
cryptodev: fix build on kernel 6.3
This commit is contained in:
commit
bc9476ff26
1 changed files with 2 additions and 2 deletions
|
@ -1,14 +1,14 @@
|
||||||
{ fetchFromGitHub, lib, stdenv, kernel ? false }:
|
{ fetchFromGitHub, lib, stdenv, kernel ? false }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "cryptodev-linux-1.12";
|
pname = "cryptodev-linux-1.13";
|
||||||
name = "${pname}-${kernel.version}";
|
name = "${pname}-${kernel.version}";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cryptodev-linux";
|
owner = "cryptodev-linux";
|
||||||
repo = "cryptodev-linux";
|
repo = "cryptodev-linux";
|
||||||
rev = pname;
|
rev = pname;
|
||||||
sha256 = "sha256-vJQ10rG5FGbeEOqCUmH/pZ0P77kAW/MtUarywbtIyHw=";
|
hash = "sha256-EzTPoKYa+XWOAa/Dk7ru02JmlymHeXVX7RMmEoJ1OT0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = kernel.moduleBuildDependencies;
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
||||||
|
|
Loading…
Reference in a new issue