fuse: fix nix-update/nix-prefetch crashing

error: attribute 'homepage' missing

       at ~/src/nixpkgs/pkgs/os-specific/linux/fuse/common.nix:91:21:

           90|
           91|   meta = with lib; {
             |                     ^
           92|     description = "Library that allows filesystems to be implemented in user space";
This commit is contained in:
Sandro Jäckel 2022-03-30 00:17:03 +02:00
parent 011783008f
commit 1c0f4cb809
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -92,7 +92,7 @@ in stdenv.mkDerivation rec {
provides the reference implementation for communicating with the FUSE
kernel module.
'';
inherit (src.meta) homepage;
homepage = "https://github.com/libfuse/libfuse";
changelog = "https://github.com/libfuse/libfuse/releases/tag/fuse-${version}";
platforms = platforms.linux;
license = with licenses; [ gpl2Only lgpl21Only ];