diff options
| author | Raito Bezarius <masterancpp@gmail.com> | 2023-11-24 14:04:55 +0100 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-11-26 11:47:35 +0000 |
| commit | be92a28465fab5dd629953b43b5da620ddccadd6 (patch) | |
| tree | aba5330d1bfcf5621d6413fc94bc8e726c0df8c0 | |
| parent | zfs_2_1: init at 2.1.13 (diff) | |
| download | nixpkgs-origin/backport-269452-to-release-23.11.tar.gz | |
zfs: improve description and long descriptionorigin/backport-269452-to-release-23.11
When we are building for user or kernel, we are not building a kernel module all the time.
(cherry picked from commit b026c45bf62b0c14836e8f30ce870336456218ee)
| -rw-r--r-- | pkgs/os-specific/linux/zfs/generic.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix index d8b22e872f1d..566af6950d48 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}"; |
