about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/zfs
diff options
context:
space:
mode:
authorAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-27 18:27:39 -0500
committerAndrew Marshall <andrew@johnandrewmarshall.com>2024-02-27 18:45:55 -0500
commit929fcf93358a833003435c0f74b9bd993f9546d0 (patch)
tree3a50972b3cacc22ec62efe2f6f9ebf7034739e78 /pkgs/os-specific/linux/zfs
parentce5b1e007e1eb96e5df296e33ed884b70dc19250 (diff)
zfs_unstable: Rename from zfsUnstable
This matches the naming of other zfs_* pkgs.
Diffstat (limited to 'pkgs/os-specific/linux/zfs')
-rw-r--r--pkgs/os-specific/linux/zfs/generic.nix2
-rw-r--r--pkgs/os-specific/linux/zfs/unstable.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix
index 566af6950d483..e5a3a79eba3ab 100644
--- a/pkgs/os-specific/linux/zfs/generic.nix
+++ b/pkgs/os-specific/linux/zfs/generic.nix
@@ -234,7 +234,7 @@ let
 
       inherit maintainers;
       mainProgram = "zfs";
-      # If your Linux kernel version is not yet supported by zfs, try zfsUnstable.
+      # If your Linux kernel version is not yet supported by zfs, try zfs_unstable.
       # On NixOS set the option boot.zfs.enableUnstable.
       broken = buildKernel && (kernelCompatible != null) && !kernelCompatible;
     };
diff --git a/pkgs/os-specific/linux/zfs/unstable.nix b/pkgs/os-specific/linux/zfs/unstable.nix
index 2bd06e0d6b749..052dd0cd74c9a 100644
--- a/pkgs/os-specific/linux/zfs/unstable.nix
+++ b/pkgs/os-specific/linux/zfs/unstable.nix
@@ -12,7 +12,7 @@ in
 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 = "zfsUnstable";
+  kernelModuleAttribute = "zfs_unstable";
   # check the release notes for compatible kernels
   kernelCompatible = kernel.kernelOlder "6.9";