forked from mirrors/nixpkgs
Merge pull request #111375 from Philipp-M/fix-zfs-path-sanitizer-patch
zfs: fix zfs legacy mount
This commit is contained in:
commit
9b935b02e3
|
@ -21,6 +21,12 @@ let
|
||||||
buildKernel = any (n: n == configFile) [ "kernel" "all" ];
|
buildKernel = any (n: n == configFile) [ "kernel" "all" ];
|
||||||
buildUser = any (n: n == configFile) [ "user" "all" ];
|
buildUser = any (n: n == configFile) [ "user" "all" ];
|
||||||
|
|
||||||
|
# remove this patch at the next ZFS release (> 2.0.1)
|
||||||
|
reapplyPathSanitizerPatch = fetchpatch {
|
||||||
|
url = "https://github.com/openzfs/zfs/commit/03f036cbccdd8699f5fe8540ef317595a35bceb8.patch";
|
||||||
|
sha256 = "c157bbb6551a4e720c3faba005e1b72e4692d304c6ff5e0e685691bd47197dca";
|
||||||
|
};
|
||||||
|
|
||||||
common = { version
|
common = { version
|
||||||
, sha256
|
, sha256
|
||||||
, extraPatches ? []
|
, extraPatches ? []
|
||||||
|
@ -190,7 +196,7 @@ in {
|
||||||
|
|
||||||
sha256 = "0wmw823ildwm9rcfyk22pvzg100yhps3y9hfjlrpspfd1hhkbp0d";
|
sha256 = "0wmw823ildwm9rcfyk22pvzg100yhps3y9hfjlrpspfd1hhkbp0d";
|
||||||
|
|
||||||
extraPatches = [ ];
|
extraPatches = [ reapplyPathSanitizerPatch ];
|
||||||
};
|
};
|
||||||
|
|
||||||
zfsUnstable = common {
|
zfsUnstable = common {
|
||||||
|
@ -202,6 +208,6 @@ in {
|
||||||
|
|
||||||
sha256 = "0wmw823ildwm9rcfyk22pvzg100yhps3y9hfjlrpspfd1hhkbp0d";
|
sha256 = "0wmw823ildwm9rcfyk22pvzg100yhps3y9hfjlrpspfd1hhkbp0d";
|
||||||
|
|
||||||
extraPatches = [ ];
|
extraPatches = [ reapplyPathSanitizerPatch ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue