1{
2 callPackage,
3 lib,
4 nixosTests,
5 stdenv,
6 ...
7}@args:
8
9callPackage ./generic.nix args {
10 # You have to ensure that in `pkgs/top-level/linux-kernels.nix`
11 # this attribute is the correct one for this package.
12 kernelModuleAttribute = "zfs_2_3";
13
14 kernelMinSupportedMajorMinor = "4.18";
15 kernelMaxSupportedMajorMinor = "6.15";
16
17 # this package should point to the latest release.
18 version = "2.3.3";
19
20 tests = {
21 inherit (nixosTests.zfs) series_2_3;
22 }
23 // lib.optionalAttrs stdenv.isx86_64 {
24 inherit (nixosTests.zfs) installer;
25 };
26
27 maintainers = with lib.maintainers; [
28 adamcstephens
29 amarshall
30 ];
31
32 hash = "sha256-NXAbyGBfpzWfm4NaP1/otTx8fOnoRV17343qUMdQp5U=";
33}