From b026c45bf62b0c14836e8f30ce870336456218ee Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 24 Nov 2023 14:04:55 +0100 Subject: [PATCH] zfs: improve description and long description When we are building for user or kernel, we are not building a kernel module all the time. --- pkgs/os-specific/linux/zfs/generic.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix index d8b22e872f1da..566af6950d483 100644 --- a/pkgs/os-specific/linux/zfs/generic.nix +++ b/pkgs/os-specific/linux/zfs/generic.nix @@ -210,11 +210,13 @@ let }; meta = { - description = "ZFS Filesystem Linux Kernel module"; + description = "ZFS Filesystem Linux" + (if buildUser then " Userspace Tools" else " Kernel Module"); longDescription = '' ZFS is a filesystem that combines a logical volume manager with a Copy-On-Write filesystem with data integrity detection and repair, snapshotting, cloning, block devices, deduplication, and more. + + ${if buildUser then "This is the userspace tools package." else "This is the kernel module package."} ''; homepage = "https://github.com/openzfs/zfs"; changelog = "https://github.com/openzfs/zfs/releases/tag/zfs-${version}";