Skip to content

Commit

Permalink
zfs: improve description and long description
Browse files Browse the repository at this point in the history
When we are building for user or kernel, we are not building a kernel module all the time.
  • Loading branch information
RaitoBezarius committed Nov 24, 2023
1 parent e04c0b0 commit b026c45
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/os-specific/linux/zfs/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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}";
Expand Down

0 comments on commit b026c45

Please sign in to comment.