138d8d6bc8
Diff: https://github.com/openzfs/zfs/compare/zfs-2.3.7...zfs-2.3.8 Changelog: https://github.com/openzfs/zfs/releases/tag/zfs-2.3.8
35 lines
728 B
Nix
35 lines
728 B
Nix
{
|
|
callPackage,
|
|
lib,
|
|
nixosTests,
|
|
stdenv,
|
|
fetchpatch,
|
|
...
|
|
}@args:
|
|
|
|
callPackage ./generic.nix args {
|
|
# You have to ensure that in `pkgs/top-level/linux-kernels.nix`
|
|
# this attribute is the correct one for this package.
|
|
kernelModuleAttribute = "zfs_2_3";
|
|
|
|
kernelMinSupportedMajorMinor = "4.18";
|
|
kernelMaxSupportedMajorMinor = "7.0";
|
|
|
|
# this package should point to the latest release.
|
|
version = "2.3.8";
|
|
|
|
tests = {
|
|
inherit (nixosTests.zfs) series_2_3;
|
|
}
|
|
// lib.optionalAttrs stdenv.hostPlatform.isx86_64 {
|
|
inherit (nixosTests.zfs) installer;
|
|
};
|
|
|
|
maintainers = with lib.maintainers; [
|
|
adamcstephens
|
|
amarshall
|
|
];
|
|
|
|
hash = "sha256-qNBInNRpWrmImcermSHC0emYmnnjNvxWj3QnGtA6SUg=";
|
|
}
|