Commit b026c45b authored by Raito Bezarius's avatar Raito Bezarius
Browse files

zfs: improve description and long description

When we are building for user or kernel, we are not building a kernel module all the time.
parent e04c0b0d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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}";