Skip to content

Commit

Permalink
zfs: fix build against 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Apr 7, 2020
1 parent 7183053 commit 75c28eb
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/os-specific/linux/zfs/default.nix
@@ -1,4 +1,5 @@
{ stdenv, fetchFromGitHub, autoreconfHook, utillinux, nukeReferences, coreutils
{ stdenv, fetchFromGitHub, fetchpatch
, autoreconfHook, utillinux, nukeReferences, coreutils
, perl, buildPackages
, configFile ? "all"

Expand Down Expand Up @@ -40,7 +41,12 @@ let
inherit rev sha256;
};

patches = extraPatches;
patches = [ (fetchpatch {
# https://github.com/openzfs/zfs/pull/9961#issuecomment-585827288
# will be included in zfs 0.5.4 as well
url = "https://gist.githubusercontent.com/satmandu/67cbae9c4d461be0e64428a1707aef1c/raw/ba0fb65f17ccce5b710e4ce86a095de577f7dfe1/k5.6.3.patch";
sha256 = "0zay7cz078v7wcnk7xl96blp7j6y64q1migb91c7h66zkpikqvgb";
}) ] ++ extraPatches;

postPatch = optionalString buildKernel ''
patchShebangs scripts
Expand Down

0 comments on commit 75c28eb

Please sign in to comment.